tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
darwin.sigtool: add meta
Weijia Wang
2 years ago
49a5cd8b
04b76eb6
+7
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
darwin
sigtool
default.nix
+7
pkgs/os-specific/darwin/sigtool/default.nix
···
15
buildInputs = [ openssl ];
16
17
installFlags = [ "PREFIX=$(out)" ];
0
0
0
0
0
0
0
18
}
···
15
buildInputs = [ openssl ];
16
17
installFlags = [ "PREFIX=$(out)" ];
18
+
19
+
meta = with lib; {
20
+
description = "A tool for working with embedded signatures in Mach-O files";
21
+
homepage = "https://github.com/thefloweringash/sigtool";
22
+
license = licenses.mit;
23
+
platforms = platforms.unix;
24
+
};
25
}