summary refs log tree commit diff
path: root/pkgs/applications/audio/lame/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/audio/lame/default.nix')
-rw-r--r--pkgs/applications/audio/lame/default.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/applications/audio/lame/default.nix b/pkgs/applications/audio/lame/default.nix
deleted file mode 100644
index 09b553a099c..00000000000
--- a/pkgs/applications/audio/lame/default.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{stdenv, fetchurl, nasm}:
-
-stdenv.mkDerivation rec {
-  name = "lame-3.99.5";
-  src = fetchurl {
-    url = "mirror://sourceforge/lame/${name}.tar.gz";
-    sha256 = "1zr3kadv35ii6liia0bpfgxpag27xcivp571ybckpbz4b10nnd14";
-  };
-
-  buildInputs = [ nasm ];
-
-  configureFlags = [ "--enable-nasm" ];
-
-  # Either disable static, or fix the rpath of 'lame' for it to point
-  # properly to the libmp3lame shared object.
-  dontDisableStatic = true;
-}