forked from mirrors/nixpkgs
7 lines
120 B
Nix
7 lines
120 B
Nix
{ stdenv, callPackage }:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (callPackage ./common.nix {}) name src;
|
|
dontStrip = true;
|
|
}
|