My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/libraries/libast/default.nix

23 lines
506 B

{ stdenv, fetchurl
, pkgconfig }:
stdenv.mkDerivation rec {
name = "libast-${version}";
version = "0.7";
src = fetchurl {
url = "http://www.eterm.org/download/${name}.tar.gz";
sha256 = "1w7bs46r4lykfd83kc3bg9i1rxzzlb4ydk23ikf8mx8avz05q1aj";
};
buildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
description = "Library of Assorted Spiffy Things";
homepage = "http://www.eterm.org";
license = licenses.bsd2;
maintainers = [ maintainers.AndersonTorres ];
};
}