mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
9a56705f94
As a short note, I am relinquishing the maintenance of many packages, because it is too much to me to handle right now.
33 lines
586 B
Nix
33 lines
586 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libast";
|
|
version = "0.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mej";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-rnqToFi+d6D6O+JDHQxkVjTc/0RBag6Jqv4uDcE4PNc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "Library of Assorted Spiffy Things";
|
|
mainProgram = "libast-config";
|
|
license = licenses.bsd2;
|
|
maintainers = [ ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|