about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/build-managers/arpa2cm/default.nix
blob: 0aec7491e4ad8ff07e8eefaf866c0284005fd2d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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 ];
  };
}