mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
9be118223b
Style of dual implementation and headers derivations is take from
bb7067f882
.
8 lines
178 B
Nix
8 lines
178 B
Nix
{ stdenv, callPackage }:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (callPackage ./common.nix {}) name src meta;
|
|
dontStrip = true;
|
|
hardeningDisable = [ "stackprotector" "fortify" ];
|
|
}
|