archiver: fix build on darwin
This commit is contained in:
parent
976a9ea16b
commit
4ca044eafc
@ -1,6 +1,7 @@
|
|||||||
{ buildGoModule
|
{ buildGoModule
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, lib
|
, stdenv
|
||||||
|
, Security
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
@ -16,7 +17,9 @@ buildGoModule rec {
|
|||||||
|
|
||||||
modSha256 = "1mrfqhd0zb78rlqlj2ncb0srwjfl7rzhy2p9mwa82pgysvlp08gv";
|
modSha256 = "1mrfqhd0zb78rlqlj2ncb0srwjfl7rzhy2p9mwa82pgysvlp08gv";
|
||||||
|
|
||||||
meta = with lib; {
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "Easily create & extract archives, and compress & decompress files of various formats";
|
description = "Easily create & extract archives, and compress & decompress files of various formats";
|
||||||
homepage = "https://github.com/mholt/archiver";
|
homepage = "https://github.com/mholt/archiver";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
@ -191,7 +191,9 @@ in
|
|||||||
|
|
||||||
dieHook = makeSetupHook {} ../build-support/setup-hooks/die.sh;
|
dieHook = makeSetupHook {} ../build-support/setup-hooks/die.sh;
|
||||||
|
|
||||||
archiver = callPackage ../applications/misc/archiver { };
|
archiver = callPackage ../applications/misc/archiver {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
digitalbitbox = libsForQt5.callPackage ../applications/misc/digitalbitbox { };
|
digitalbitbox = libsForQt5.callPackage ../applications/misc/digitalbitbox { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user