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 {
|
2019-08-15 14:41:18 +02:00
|
|
|
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
|
|
|
|
2021-01-21 18:00:13 +01: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 ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = platforms.unix;
|
2016-04-06 07:39:17 +02:00
|
|
|
};
|
|
|
|
}
|