c16b552bac
add schroedinger, a free codec (might be moved to its own category instead of libs) svn path=/nixpkgs/trunk/; revision=11043
21 lines
480 B
Nix
21 lines
480 B
Nix
args: with args;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "liboil-" + version;
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/download/${name}.tar.gz";
|
|
sha256 = "0cndfz98zca40qc1d2waq1dkfx32yscbllbvlnlhjp4cjlkyh9qg";
|
|
};
|
|
|
|
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.";
|
|
};
|
|
}
|