summary refs log tree commit diff
path: root/pkgs/applications/audio/lame
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/audio/lame')
-rw-r--r--pkgs/applications/audio/lame/default.nix9
1 files changed, 9 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" ;
+  };
+}