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.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/applications/video/MPlayer/rp9codecs/default.nix b/pkgs/applications/video/MPlayer/rp9codecs/default.nix
index 27d95f21604..4456fc031a7 100644
--- a/pkgs/applications/video/MPlayer/rp9codecs/default.nix
+++ b/pkgs/applications/video/MPlayer/rp9codecs/default.nix
@@ -1,8 +1,15 @@
-{stdenv, fetchurl}: stdenv.mkDerivation {
+{stdenv, fetchurl}:
+
+stdenv.mkDerivation {
   name = "MPlayer-rp9codecs-20050115";
-  builder = ./builder.sh;
+  
   src = fetchurl {
     url = http://www2.mplayerhq.hu/MPlayer/releases/codecs/rp9codecs-20050115.tar.bz2;
     sha256 = "353c22e2c992a1c730bdd5fade66a94e1a058e38063d2ce064a6510b70c39677";
   };
+
+  installPhase = ''
+    mkdir $out
+    cp -prv * $out
+  '';
 }