mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
parent
f59a544bf1
commit
b5b77a6886
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, dos2unix, which, qt }:
|
||||
{ stdenv, fetchurl, dos2unix, which, qt, Carbon }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "qscreenshot-1.0";
|
||||
@ -8,7 +8,8 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1spj5fg2l8p5bk81xsv6hqn1kcrdiy54w19jsfb7g5i94vcb1pcx";
|
||||
};
|
||||
|
||||
buildInputs = [ dos2unix which qt ];
|
||||
buildInputs = [ dos2unix which qt ]
|
||||
++ stdenv.lib.optional stdenv.isDarwin Carbon;
|
||||
|
||||
# Remove carriage returns that cause /bin/sh to abort
|
||||
preConfigure = ''
|
||||
|
@ -17310,6 +17310,7 @@ with pkgs;
|
||||
qsampler = libsForQt5.callPackage ../applications/audio/qsampler { };
|
||||
|
||||
qscreenshot = callPackage ../applications/graphics/qscreenshot {
|
||||
inherit (darwin.apple_sdk.frameworks) Carbon;
|
||||
qt = qt4;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user