nixpkgs/pkgs/development/libraries/liboil/0.3.15.nix
Marc Weber 4ec10291ef liboil update (0.3.13 -> 0.3.15)
svn path=/nixpkgs/trunk/; revision=13116
2008-10-26 08:40:11 +00:00

21 lines
480 B
Nix

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.";
};
}