update liboil to 0.3.13 (and add some (new) missing deps)

add schroedinger, a free codec (might be moved to its own category instead of libs)

svn path=/nixpkgs/trunk/; revision=11043
This commit is contained in:
Armijn Hemel
2008-03-10 20:13:44 +00:00
parent c88710749b
commit c16b552bac
3 changed files with 19 additions and 3 deletions
@@ -0,0 +1,11 @@
{stdenv, fetchurl, liboil, pkgconfig}:
stdenv.mkDerivation {
name = "schroedinger-1.0.0";
src = fetchurl {
url = mirror://sourceforge/schrodinger/schroedinger-1.0.0.tar.gz;
sha256 = "0r374wvc73pfzkcpwk0q0sjx6yhp79acyiqbjy3c7sfqdy7sm4x8";
};
buildInputs = [liboil pkgconfig];
}