liboil, libosip2 and libeXosip2 added
svn path=/nixpkgs/branches/stdenv-updates/; revision=10517
This commit is contained in:
parent
7c1e5d4200
commit
2e3480708a
13
pkgs/development/libraries/libeXosip2/3.0.3.nix
Normal file
13
pkgs/development/libraries/libeXosip2/3.0.3.nix
Normal file
@ -0,0 +1,13 @@
|
||||
args: with args;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libeXosip2-" + version;
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://downloa.savannah.nongnu.org/releases/exosip/${name}.tar.gz";
|
||||
sha256 = "0jgy2mjq7r4kp8afl8zhymvca6hghp6chv36laiqz4bizcddzvxa";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [libosip2];
|
||||
configureFlags = "--enable-shared --disable-static";
|
||||
}
|
1
pkgs/development/libraries/libeXosip2/result
Symbolic link
1
pkgs/development/libraries/libeXosip2/result
Symbolic link
@ -0,0 +1 @@
|
||||
/nix/store/kc4kxnsi33x8a5p9xa3kv6w7dhj52w2f-libeXosip2-3.0.3
|
20
pkgs/development/libraries/liboil/0.3.12.nix
Normal file
20
pkgs/development/libraries/liboil/0.3.12.nix
Normal file
@ -0,0 +1,20 @@
|
||||
args: with args;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "liboil-" + version;
|
||||
|
||||
src = fetchurl {
|
||||
url = "${meta.homepage}/liboil/${name}.tar.gz";
|
||||
sha256 = "0gdmly9sli1918pnb4ds1g38ipxikn651hdss86mp4qlfb8wvqlv";
|
||||
};
|
||||
|
||||
configureFlags = "--enable-shared --disable-static";
|
||||
|
||||
buildInputs = [pkgconfig];
|
||||
|
||||
meta = {
|
||||
homepage = http://liboil.freedesktop.org;
|
||||
description = "Liboil is a library of simple functions that are optimized
|
||||
for various CPUs.";
|
||||
};
|
||||
}
|
12
pkgs/development/libraries/libosip2/3.0.3-2.nix
Normal file
12
pkgs/development/libraries/libosip2/3.0.3-2.nix
Normal file
@ -0,0 +1,12 @@
|
||||
args: with args;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libosip2-" + version;
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/osip/${name}.tar.gz";
|
||||
sha256 = "0jna6xwc42g1sh91hwzi71875mpazmnsaaq68hjirwldh39qlp69";
|
||||
};
|
||||
|
||||
configureFlags = "--enable-shared --disable-static";
|
||||
}
|
@ -2189,6 +2189,13 @@ rec {
|
||||
|
||||
libextractor = libextractorFun null;
|
||||
|
||||
libeXosip2Fun = lib.sumArgs
|
||||
(selectVersion ../development/libraries/libeXosip2 "3.0.3") {
|
||||
inherit fetchurl stdenv libosip2;
|
||||
};
|
||||
|
||||
libeXosip2 = libeXosip2Fun null;
|
||||
|
||||
libgcrypt = import ../development/libraries/libgcrypt {
|
||||
inherit fetchurl stdenv libgpgerror;
|
||||
};
|
||||
@ -2253,6 +2260,20 @@ rec {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
liboilFun = lib.sumArgs
|
||||
(selectVersion ../development/libraries/liboil "0.3.12") {
|
||||
inherit fetchurl stdenv pkgconfig;
|
||||
};
|
||||
|
||||
liboil = liboilFun null;
|
||||
|
||||
libosip2Fun = lib.sumArgs
|
||||
(selectVersion ../development/libraries/libosip2 "3.0.3-2") {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
libosip2 = libosip2Fun null;
|
||||
|
||||
libotr = import ../development/libraries/libotr {
|
||||
inherit fetchurl stdenv libgcrypt;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user