bscpkgs/bsc/nixtools/default.nix

18 lines
329 B
Nix
Raw Normal View History

2020-10-05 12:33:44 +02:00
{
stdenv
2020-10-05 16:40:22 +02:00
, glibc
2020-10-05 12:33:44 +02:00
}:
stdenv.mkDerivation rec {
2020-10-13 14:16:30 +02:00
pname = "nixtools";
version = "${src.shortRev}";
src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/rarias/nixtools";
ref = "master";
};
2020-10-05 16:40:22 +02:00
buildInputs = [ glibc.static ];
2020-10-05 12:33:44 +02:00
makeFlags = [ "DESTDIR=$(out)" ];
preBuild = "env";
dontPatchShebangs = true;
}