mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
libast: init at 0.7
This commit is contained in:
parent
8eaa5fb824
commit
3e9b101522
22
pkgs/development/libraries/libast/default.nix
Normal file
22
pkgs/development/libraries/libast/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
||||
|
@ -7259,6 +7259,8 @@ in
|
||||
|
||||
libass = callPackage ../development/libraries/libass { };
|
||||
|
||||
libast = callPackage ../development/libraries/libast { };
|
||||
|
||||
libassuan = callPackage ../development/libraries/libassuan { };
|
||||
|
||||
libasyncns = callPackage ../development/libraries/libasyncns { };
|
||||
|
Loading…
Reference in New Issue
Block a user