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

a52dec: nix-expr review, shared build

svn path=/nixpkgs/branches/stdenv-updates/; revision=10523
This commit is contained in:
Yury G. Kudryashov 2008-02-06 19:00:56 +00:00
parent 112024a954
commit 1bd8ddd18e

View file

@ -1,9 +1,15 @@
{stdenv, fetchurl}:
args: with args;
stdenv.mkDerivation {
stdenv.mkDerivation rec {
name = "a52dec-0.7.4";
src = fetchurl {
url = http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz;
md5 = "caa9f5bc44232dc8aeea773fea56be80";
url = "${meta.homepage}/files/a52dec-0.7.4.tar.gz";
sha256 = "0czccp4fcpf2ykp16xcrzdfmnircz1ynhls334q374xknd5747d2";
};
configureFlags = "--enable-shared --disable-static";
meta = {
homepage = http://liba52.sourceforge.net;
};
}