Remove cluster scripts from nixtools

This commit is contained in:
2020-10-13 14:16:30 +02:00
parent 04328d81ff
commit 05b37aa11d
2 changed files with 7 additions and 18 deletions

View File

@@ -1,25 +1,17 @@
{
stdenv
, glibc
, targetCluster
, nixPrefix
}:
stdenv.mkDerivation rec {
name = "nixtools-${targetCluster}";
#version = "${src.shortRev}";
src = ~/nixtools;
pname = "nixtools";
version = "${src.shortRev}";
src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/rarias/nixtools";
ref = "master";
};
buildInputs = [ glibc.static ];
makeFlags = [ "DESTDIR=$(out)" ];
preBuild = "env";
dontPatchShebangs = true;
inherit nixPrefix targetCluster;
postPatch = ''
substituteAllInPlace scripts/cobi/runexp
sed -i s:@nixtools@:$out:g scripts/cobi/runexp
'';
#src = builtins.fetchGit {
# url = "ssh://git@bscpm02.bsc.es/rarias/nixtools";
# ref = "master";
#};
}