summary refs log tree commit diff
path: root/pkgs/applications/video/MPlayer/rp9codecs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/video/MPlayer/rp9codecs/default.nix')
-rw-r--r--pkgs/applications/video/MPlayer/rp9codecs/default.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/pkgs/applications/video/MPlayer/rp9codecs/default.nix b/pkgs/applications/video/MPlayer/rp9codecs/default.nix
deleted file mode 100644
index 4456fc031a7..00000000000
--- a/pkgs/applications/video/MPlayer/rp9codecs/default.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{stdenv, fetchurl}:
-
-stdenv.mkDerivation {
-  name = "MPlayer-rp9codecs-20050115";
-  
-  src = fetchurl {
-    url = http://www2.mplayerhq.hu/MPlayer/releases/codecs/rp9codecs-20050115.tar.bz2;
-    sha256 = "353c22e2c992a1c730bdd5fade66a94e1a058e38063d2ce064a6510b70c39677";
-  };
-
-  installPhase = ''
-    mkdir $out
-    cp -prv * $out
-  '';
-}