nixpkgs/pkgs/development/tools/build-managers/arpa2cm/default.nix

22 lines
482 B
Nix
Raw Normal View History

2017-11-09 21:24:21 +00:00
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "arpa2cm";
version = "0.5";
src = fetchFromGitHub {
sha256 = "093h7njj8d8iiwnw5byfxkkzlbny60fwv1w57j8f1lsd4yn6rih4";
rev = "version-${version}";
2019-09-09 00:38:31 +01:00
repo = pname;
2017-11-09 21:24:21 +00:00
owner = "arpa2";
};
buildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "CMake Module library for the ARPA2 project";
license = licenses.bsd2;
maintainers = with maintainers; [ leenaars ];
};
}