nixpkgs/pkgs/development/libraries/libast/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
578 B
Nix
Raw Normal View History

2022-05-10 12:40:24 +02:00
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, pkg-config
}:
2016-04-06 07:39:17 +02:00
stdenv.mkDerivation rec {
pname = "libast";
2022-05-10 12:40:24 +02:00
version = "0.8";
2018-01-28 16:34:44 +01:00
2022-05-10 12:40:24 +02:00
src = fetchFromGitHub {
owner = "mej";
repo = pname;
rev = version;
hash = "sha256-rnqToFi+d6D6O+JDHQxkVjTc/0RBag6Jqv4uDcE4PNc=";
2016-04-06 07:39:17 +02:00
};
2022-05-10 12:40:24 +02:00
nativeBuildInputs = [
autoreconfHook
pkg-config
];
2016-04-06 07:39:17 +02:00
meta = with lib; {
2022-05-10 12:40:24 +02:00
inherit (src.meta) homepage;
2016-04-06 07:39:17 +02:00
description = "Library of Assorted Spiffy Things";
license = licenses.bsd2;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.unix;
2016-04-06 07:39:17 +02:00
};
}