bscpkgs/bsc/cn6/default.nix

25 lines
336 B
Nix
Raw Normal View History

2021-01-18 18:42:07 +01:00
{
stdenv
, babeltrace2
, pkg-config
, uthash
}:
stdenv.mkDerivation rec {
2021-02-15 17:44:20 +01:00
pname = "cn6";
2021-01-18 18:42:07 +01:00
version = "${src.shortRev}";
buildInputs = [
babeltrace2
pkg-config
uthash
];
src = builtins.fetchGit {
2021-02-15 17:44:20 +01:00
url = "ssh://git@bscpm03.bsc.es/rarias/cn6.git";
2021-01-18 18:42:07 +01:00
ref = "master";
};
makeFlags = [ "PREFIX=$(out)" ];
2021-01-18 18:42:07 +01:00
}