summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/audio/lame/default.nix9
-rw-r--r--pkgs/system/all-packages-generic.nix3
2 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/applications/audio/lame/default.nix b/pkgs/applications/audio/lame/default.nix
new file mode 100644
index 00000000000..d995dc8222e
--- /dev/null
+++ b/pkgs/applications/audio/lame/default.nix
@@ -0,0 +1,9 @@
+{stdenv, fetchurl}:
+
+stdenv.mkDerivation {
+  name = "lame-3.96.1";
+  src = fetchurl {
+    url = http://mesh.dl.sourceforge.net/sourceforge/lame/lame-3.96.1.tar.gz ;
+    md5 = "e1206c46a5e276feca11a7149e2fc6ac" ;
+  };
+}
diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix
index b9187fc5c4d..e5592d023ed 100644
--- a/pkgs/system/all-packages-generic.nix
+++ b/pkgs/system/all-packages-generic.nix
@@ -874,6 +874,9 @@ rec {
     inherit fetchurl stdenv libogg;
   };
 
+  lame = (import ../applications/audio/lame) {
+    inherit fetchurl stdenv ;
+  };
 
   MPlayer = (import ../applications/video/MPlayer) {
     inherit fetchurl stdenv freetype x11 zlib;