mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
loudmouth library added
svn path=/nixpkgs/trunk/; revision=10359
This commit is contained in:
parent
1d493837f4
commit
074ec5902a
14
pkgs/development/libraries/loudmouth/default.nix
Normal file
14
pkgs/development/libraries/loudmouth/default.nix
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
args: with args;
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "loudmouth-1.3.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://ftp.imendio.com/pub/imendio/loudmouth/src/${name}.tar.bz2";
|
||||||
|
sha256 = "0f3xpp3pf5bxcp0kcmqa0g28vfl5gg8mj0hxhs2cx75hwgikd26x";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [gnutls libidn glib];
|
||||||
|
buildInputs = [pkgconfig];
|
||||||
|
|
||||||
|
configureFlags = "--enable-shared --disable-static";
|
||||||
|
}
|
@ -2381,6 +2381,11 @@ rec {
|
|||||||
inherit fetchurl stdenv automake autoconf libtool cppunit libxml2;
|
inherit fetchurl stdenv automake autoconf libtool cppunit libxml2;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
loudmouth = import ../development/libraries/loudmouth {
|
||||||
|
inherit fetchurl stdenv libidn gnutls pkgconfig;
|
||||||
|
inherit (gtkLibs) glib;
|
||||||
|
};
|
||||||
|
|
||||||
lzo = import ../development/libraries/lzo {
|
lzo = import ../development/libraries/lzo {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user