1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

liboil update (0.3.13 -> 0.3.15)

svn path=/nixpkgs/trunk/; revision=13116
This commit is contained in:
Marc Weber 2008-10-26 08:40:11 +00:00
parent df75b55ba6
commit 4ec10291ef
2 changed files with 21 additions and 1 deletions

View file

@ -0,0 +1,20 @@
args: with args;
stdenv.mkDerivation rec {
name = "liboil-" + version;
src = fetchurl {
url = "${meta.homepage}/download/${name}.tar.gz";
sha256 = "1m3zcl54sf21cf2ckzny16ihymz8whi60ymyrhmd3m1dlw1knpmf";
};
configureFlags = "--enable-shared --disable-static";
buildInputs = [pkgconfig glib];
meta = {
homepage = http://liboil.freedesktop.org;
description = "Liboil is a library of simple functions that are optimized
for various CPUs.";
};
}

View file

@ -3236,7 +3236,7 @@ let
};
liboil = composedArgsAndFun
(selectVersion ../development/libraries/liboil "0.3.13") {
(selectVersion ../development/libraries/liboil "0.3.15") {
inherit fetchurl stdenv pkgconfig;
inherit (gtkLibs) glib;
};