forked from mirrors/nixpkgs
72cbe8be4b
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/transmission-remote-gtk/versions
37 lines
1 KiB
Nix
37 lines
1 KiB
Nix
{ stdenv, autoconf, automake, libtool, wrapGAppsHook, fetchFromGitHub, pkgconfig
|
|
, intltool, gtk3, json-glib, curl, glib, autoconf-archive, appstream-glib
|
|
, hicolor-icon-theme }:
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "transmission-remote-gtk-${version}";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "transmission-remote-gtk";
|
|
repo = "transmission-remote-gtk";
|
|
rev = "${version}";
|
|
sha256 = "126s7aqh9j06zvnwhjbql5x9ibz05pdrrzwb9c6h4qndvr8iqqff";
|
|
};
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
nativeBuildInputs= [
|
|
autoconf automake libtool wrapGAppsHook
|
|
pkgconfig intltool autoconf-archive
|
|
appstream-glib
|
|
];
|
|
|
|
buildInputs = [ gtk3 json-glib curl glib hicolor-icon-theme ];
|
|
|
|
doCheck = false; # fails with style validation error
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "GTK remote control for the Transmission BitTorrent client";
|
|
homepage = https://github.com/ajf8/transmission-remote-gtk;
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.ehmry ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|