about summary refs log tree commit diff
path: root/pkgs/applications/networking/syncplay
diff options
context:
space:
mode:
authorMichael Hoang <Enzime@users.noreply.github.com>2018-07-09 21:00:49 +1000
committerxeji <36407913+xeji@users.noreply.github.com>2018-07-09 13:00:49 +0200
commite64b114c3a73170cd5dfdd0d911c8ab9039d1bb9 (patch)
treeddf2057269a87e194f970bf38d6cab4c2154f237 /pkgs/applications/networking/syncplay
parent584561bb06c23b5971aa51da9fd426181aaea62b (diff)
syncplay: 1.5.3 -> 1.5.5 (#43245)
Leave syncplay to install to the correct directory rather than moving
folders around to make it work.
Diffstat (limited to 'pkgs/applications/networking/syncplay')
-rw-r--r--pkgs/applications/networking/syncplay/default.nix13
1 files changed, 4 insertions, 9 deletions
diff --git a/pkgs/applications/networking/syncplay/default.nix b/pkgs/applications/networking/syncplay/default.nix
index 029158caf4b5e..07444fbb9fe95 100644
--- a/pkgs/applications/networking/syncplay/default.nix
+++ b/pkgs/applications/networking/syncplay/default.nix
@@ -2,23 +2,18 @@
 
 python2Packages.buildPythonApplication rec {
   name = "syncplay-${version}";
-  version = "1.5.3";
+  version = "1.5.5";
 
   format = "other";
 
   src = fetchurl {
-    url = https://github.com/Syncplay/syncplay/archive/v1.5.3.tar.gz;
-    sha256 = "1yk0aajskhk6czpjshf9a9pzp3rafh5cgdcyyz8pwpk4ca9zyzfv";
+    url = https://github.com/Syncplay/syncplay/archive/v1.5.5.tar.gz;
+    sha256 = "0g12hm84c48fjrmwljl0ii62f55vm6fk2mv8vna7fadabmk6dwhr";
   };
 
   propagatedBuildInputs = with python2Packages; [ pyside twisted ];
 
-  makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
-
-  postInstall = ''
-    mkdir -p $out/lib/python2.7/site-packages
-    mv $out/lib/syncplay/syncplay $out/lib/python2.7/site-packages/
-  '';
+  makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ];
 
   meta = with stdenv.lib; {
     homepage = https://syncplay.pl/;