forked from mirrors/nixpkgs
added libvorbis libogg and flac
svn path=/nixpkgs/trunk/; revision=2063
This commit is contained in:
parent
23b30cf548
commit
cec2c24d85
11
pkgs/applications/audio/flac/default.nix
Normal file
11
pkgs/applications/audio/flac/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{stdenv, fetchurl, libogg}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "flac-1.1.1";
|
||||
src = fetchurl {
|
||||
url = http://mesh.dl.sourceforge.net/sourceforge/flac/flac-1.1.1.tar.gz ;
|
||||
md5 = "c6ccddccf8ad344065698047c2fc7280" ;
|
||||
};
|
||||
|
||||
buildInputs = [libogg] ;
|
||||
}
|
9
pkgs/development/libraries/libogg/default.nix
Normal file
9
pkgs/development/libraries/libogg/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libogg-1.1.2";
|
||||
src = fetchurl {
|
||||
url = http://downloads.xiph.org/releases/ogg/libogg-1.1.2.tar.gz ;
|
||||
md5 = "4d82996517bf33bb912c97e9d0b635c4" ;
|
||||
};
|
||||
}
|
11
pkgs/development/libraries/libvorbis/default.nix
Normal file
11
pkgs/development/libraries/libvorbis/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{stdenv, fetchurl, libogg}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libvorbis-1.1.0";
|
||||
src = fetchurl {
|
||||
url = http://downloads.xiph.org/releases/vorbis/libvorbis-1.1.0.tar.gz ;
|
||||
md5 = "bb764aeabde613d1a424a29b1f15e7e6" ;
|
||||
};
|
||||
|
||||
buildInputs = [libogg];
|
||||
}
|
|
@ -529,6 +529,14 @@ rec {
|
|||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
libogg = (import ../development/libraries/libogg) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
libvorbis = (import ../development/libraries/libvorbis) {
|
||||
inherit fetchurl stdenv libogg;
|
||||
};
|
||||
|
||||
libxml2 = (import ../development/libraries/libxml2) {
|
||||
inherit fetchurl stdenv zlib python;
|
||||
};
|
||||
|
@ -861,6 +869,11 @@ rec {
|
|||
cdparanoiaIII = (import ../applications/audio/cdparanoia) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
flac = (import ../applications/audio/flac) {
|
||||
inherit fetchurl stdenv libogg;
|
||||
};
|
||||
|
||||
|
||||
MPlayer = (import ../applications/video/MPlayer) {
|
||||
inherit fetchurl stdenv freetype x11 zlib;
|
||||
|
|
Loading…
Reference in a new issue