mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 01:20:40 +00:00
9be118223b
Style of dual implementation and headers derivations is take from
bb7067f882
.
7 lines
143 B
Nix
7 lines
143 B
Nix
{ stdenv, callPackage }:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (callPackage ./common.nix {}) name src nativeBuildInputs meta;
|
|
dontStrip = true;
|
|
}
|