mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
syncplay: init at 1.5.0
This commit is contained in:
parent
80cc3de45a
commit
a1ab4788dd
@ -205,6 +205,7 @@
|
||||
elijahcaine = "Elijah Caine <elijahcainemv@gmail.com>";
|
||||
elitak = "Eric Litak <elitak@gmail.com>";
|
||||
ellis = "Ellis Whitehead <nixos@ellisw.net>";
|
||||
enzime = "Michael Hoang <enzime@users.noreply.github.com>";
|
||||
eperuffo = "Emanuele Peruffo <info@emanueleperuffo.com>";
|
||||
epitrochoid = "Mabry Cervin <mpcervin@uncg.edu>";
|
||||
eqyiel = "Ruben Maher <r@rkm.id.au>";
|
||||
|
30
pkgs/applications/networking/syncplay/default.nix
Normal file
30
pkgs/applications/networking/syncplay/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ stdenv, fetchurl, python2Packages }:
|
||||
|
||||
python2Packages.buildPythonApplication rec {
|
||||
name = "syncplay-${version}";
|
||||
version = "1.5.0";
|
||||
|
||||
format = "other";
|
||||
|
||||
src = fetchurl {
|
||||
url = https://github.com/Syncplay/syncplay/archive/v1.5.0.tar.gz;
|
||||
sha256 = "762e6318588e14aa02b1340baa18510e7de87771c62ca5b44d985b6d1289964d";
|
||||
};
|
||||
|
||||
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/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://syncplay.pl/;
|
||||
description = "Free software that synchronises media players";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ enzime ];
|
||||
};
|
||||
}
|
@ -16888,6 +16888,8 @@ with pkgs;
|
||||
|
||||
symlinks = callPackage ../tools/system/symlinks { };
|
||||
|
||||
syncplay = callPackage ../applications/networking/syncplay { };
|
||||
|
||||
syncthing = callPackage ../applications/networking/syncthing { };
|
||||
|
||||
syncthing012 = callPackage ../applications/networking/syncthing012 { };
|
||||
|
Loading…
Reference in New Issue
Block a user