nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 32 lines 515 B view raw
1{ 2 lib, 3 apple-sdk, 4 libutil, 5 mkAppleDerivation, 6 pkg-config, 7}: 8 9mkAppleDerivation { 10 releaseName = "patch_cmds"; 11 12 outputs = [ 13 "out" 14 "man" 15 ]; 16 17 xcodeHash = "sha256-FLCJY40l74ExO0WTaA8hb9guhOBXeui2GqWL/7QeJJk="; 18 19 nativeBuildInputs = [ pkg-config ]; 20 21 buildInputs = [ libutil ]; 22 23 meta = { 24 description = "BSD patch commands for Darwin"; 25 license = [ 26 lib.licenses.apple-psl10 27 lib.licenses.bsd2 # -freebsd 28 lib.licenses.bsd3 29 lib.licenses.bsdOriginal 30 ]; 31 }; 32}