nixpkgs/pkgs/development/tools/build-managers/arpa2cm/default.nix
2018-02-12 19:43:01 +01:00

23 lines
519 B
Nix

{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "arpa2cm";
version = "0.5";
name = "${pname}-${version}";
src = fetchFromGitHub {
sha256 = "093h7njj8d8iiwnw5byfxkkzlbny60fwv1w57j8f1lsd4yn6rih4";
rev = "version-${version}";
repo = "${pname}";
owner = "arpa2";
};
buildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "CMake Module library for the ARPA2 project";
license = licenses.bsd2;
maintainers = with maintainers; [ leenaars ];
};
}