nixpkgs/pkgs/development/tools/build-managers/arpa2cm/default.nix
2021-01-23 20:30:03 +07:00

22 lines
486 B
Nix

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