tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
anup: fix build on darwin
Ryan Burns
4 years ago
68a8b278
8aba57cf
+6
-2
2 changed files
expand all
collapse all
unified
split
pkgs
applications
misc
anup
default.nix
top-level
all-packages.nix
+3
-1
pkgs/applications/misc/anup/default.nix
···
1
-
{ lib, rustPlatform, fetchFromGitHub, sqlite, xdg-utils}:
2
3
rustPlatform.buildRustPackage rec {
4
pname = "anup";
···
14
buildInputs = [
15
sqlite
16
xdg-utils
0
0
17
];
18
19
cargoSha256 = "sha256-1TA2HDHKA3twFtlAWaC2zcRzS8TJwcbBt1OTQ3hC3qM=";
···
1
+
{ lib, stdenv, rustPlatform, fetchFromGitHub, Security, sqlite, xdg-utils}:
2
3
rustPlatform.buildRustPackage rec {
4
pname = "anup";
···
14
buildInputs = [
15
sqlite
16
xdg-utils
17
+
] ++ lib.optionals stdenv.isDarwin [
18
+
Security
19
];
20
21
cargoSha256 = "sha256-1TA2HDHKA3twFtlAWaC2zcRzS8TJwcbBt1OTQ3hC3qM=";
+3
-1
pkgs/top-level/all-packages.nix
···
23752
23753
antiword = callPackage ../applications/office/antiword {};
23754
23755
-
anup = callPackage ../applications/misc/anup {};
0
0
23756
23757
anytype = callPackage ../applications/misc/anytype { };
23758
···
23752
23753
antiword = callPackage ../applications/office/antiword {};
23754
23755
+
anup = callPackage ../applications/misc/anup {
23756
+
inherit (darwin.apple_sdk.frameworks) Security;
23757
+
};
23758
23759
anytype = callPackage ../applications/misc/anytype { };
23760