about summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@gmail.com>2013-12-09 02:25:32 +0100
committerAndersonTorres <torres.anderson.85@gmail.com>2013-12-14 20:47:05 +0100
commite34aea6178d3cf65d33ce768b6321e53d88ce0ab (patch)
treed4173dedf3bf3cb6c9f2ab4d27be05d5a5da40b0 /pkgs/applications/video
parented05981c8a9abfbd7935387583fb0dfb265c384f (diff)
downloadnixlib-e34aea6178d3cf65d33ce768b6321e53d88ce0ab.tar
nixlib-e34aea6178d3cf65d33ce768b6321e53d88ce0ab.tar.gz
nixlib-e34aea6178d3cf65d33ce768b6321e53d88ce0ab.tar.bz2
nixlib-e34aea6178d3cf65d33ce768b6321e53d88ce0ab.tar.lz
nixlib-e34aea6178d3cf65d33ce768b6321e53d88ce0ab.tar.xz
nixlib-e34aea6178d3cf65d33ce768b6321e53d88ce0ab.tar.zst
nixlib-e34aea6178d3cf65d33ce768b6321e53d88ce0ab.zip
It is a first try to an expression for MPV video player.
It certainly needs a bit of improvement and testing, but it works
nicely - so it's a good time to put it to the great public!
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/mpv/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/applications/video/mpv/default.nix b/pkgs/applications/video/mpv/default.nix
index 4e1594e54f5d..bb91ca5beb5c 100644
--- a/pkgs/applications/video/mpv/default.nix
+++ b/pkgs/applications/video/mpv/default.nix
@@ -86,9 +86,6 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ python3 lua5 perl ];
 
-  postConfigure = ''
-    patchShebangs TOOLS
-  '';
 
 # There are almost no need of "configure flags", but some libraries
 # weren't detected; see the TODO comments below
@@ -99,6 +96,7 @@ stdenv.mkDerivation rec {
 
   configurePhase = ''
     python3 ${waf} configure --prefix=$out
+    patchShebangs TOOLS
   '';
 
   buildPhase = ''