Merge pull request #30558 from volth/tixati-2.55

tixati: init at 2.55

authored by Orivej Desh and committed by GitHub 0c104e40 5369837c

+32
+30
pkgs/applications/networking/p2p/tixati/default.nix
···
··· 1 + { stdenv, fetchurl, glib, zlib, dbus, dbus_glib, gtk2, gdk_pixbuf, cairo, pango }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "tixati-${version}"; 5 + version = "2.55"; 6 + 7 + src = fetchurl { 8 + url = "https://download2.tixati.com/download/tixati-${version}-1.x86_64.manualinstall.tar.gz"; 9 + sha256 = "02mha6lfcb0mg0y977bxa6xg8krpbsbzpm4b5xw6y6wign4d8a8w"; 10 + }; 11 + 12 + installPhase = '' 13 + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ 14 + --set-rpath ${stdenv.lib.makeLibraryPath [ glib zlib dbus dbus_glib gtk2 gdk_pixbuf cairo pango ]} \ 15 + tixati 16 + install -D tixati $out/bin/tixati 17 + install -D tixati.desktop $out/share/applications/tixati.desktop 18 + install -D tixati.png $out/share/icons/tixati.png 19 + ''; 20 + 21 + dontStrip = true; 22 + 23 + meta = with stdenv.lib; { 24 + description = "Torrent client"; 25 + homepage = http://www.tixati.com; 26 + license = licenses.unfree; 27 + platforms = [ "x86_64-linux" ]; 28 + maintainers = with maintainers; [ volth ]; 29 + }; 30 + }
+2
pkgs/top-level/all-packages.nix
··· 16793 16794 tint2 = callPackage ../applications/misc/tint2 { }; 16795 16796 tkcvs = callPackage ../applications/version-management/tkcvs { }; 16797 16798 tla = callPackage ../applications/version-management/arch { };
··· 16793 16794 tint2 = callPackage ../applications/misc/tint2 { }; 16795 16796 + tixati = callPackage ../applications/networking/p2p/tixati { }; 16797 + 16798 tkcvs = callPackage ../applications/version-management/tkcvs { }; 16799 16800 tla = callPackage ../applications/version-management/arch { };