mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
31 lines
1,001 B
Nix
31 lines
1,001 B
Nix
{ stdenv, fetchurl, glib, zlib, dbus, dbus-glib, gtk2, gdk-pixbuf, cairo, pango }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tixati";
|
|
version = "2.72";
|
|
|
|
src = fetchurl {
|
|
url = "https://download2.tixati.com/download/tixati-${version}-1.x86_64.manualinstall.tar.gz";
|
|
sha256 = "04si7xwbpvljdbngmzlfvkn51wih3aqcb5g6r76wdh3pfpppskhr";
|
|
};
|
|
|
|
installPhase = ''
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
--set-rpath ${stdenv.lib.makeLibraryPath [ glib zlib dbus dbus-glib gtk2 gdk-pixbuf cairo pango ]} \
|
|
tixati
|
|
install -D tixati $out/bin/tixati
|
|
install -D tixati.desktop $out/share/applications/tixati.desktop
|
|
install -D tixati.png $out/share/icons/tixati.png
|
|
'';
|
|
|
|
dontStrip = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Torrent client";
|
|
homepage = "http://www.tixati.com";
|
|
license = licenses.unfree;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ volth ];
|
|
};
|
|
}
|