26 lines
390 B
Nix
26 lines
390 B
Nix
{
|
|
stdenv
|
|
, babeltrace2
|
|
, pkg-config
|
|
, uthash
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cn6";
|
|
version = "${src.shortRev}";
|
|
|
|
buildInputs = [
|
|
babeltrace2
|
|
pkg-config
|
|
uthash
|
|
];
|
|
|
|
src = builtins.fetchGit {
|
|
url = "ssh://git@bscpm03.bsc.es/rarias/cn6.git";
|
|
ref = "master";
|
|
rev = "c72c3b66b720c2a33950f536fc819051c8f20a69";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
}
|