bscpkgs/bsc/cn6/default.nix
Rodrigo Arias Mallo 9c8282362a cn6: use install target from the Makefile
The PREFIX must be set both at build and install time.
2021-03-19 11:39:58 +01:00

25 lines
336 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";
};
makeFlags = [ "PREFIX=$(out)" ];
}