mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
76 lines
2.2 KiB
Nix
76 lines
2.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, makeDesktopItem, unzip
|
|
, fpc, lazarus, libX11, glib, gtk2, gdk-pixbuf, pango, atk, cairo, openssl
|
|
, unstableGitUpdater }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "transgui";
|
|
version = "5.18.0-unstable-2024-10-03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "transmission-remote-gui";
|
|
repo = "transgui";
|
|
rev = "8854357ece266e749e8981a93c8002465a93d8f2";
|
|
hash = "sha256-8ycivjjPeXBdPbqNNlO2hcre6T9sFhqg6vUfCREtd8k=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config unzip ];
|
|
buildInputs = [
|
|
fpc lazarus stdenv.cc libX11 glib gtk2 gdk-pixbuf
|
|
pango atk cairo openssl
|
|
];
|
|
|
|
NIX_LDFLAGS = ''
|
|
-L${lib.getLib stdenv.cc.cc}/lib -lX11 -lglib-2.0 -lgtk-x11-2.0
|
|
-lgdk-x11-2.0 -lgdk_pixbuf-2.0 -lpango-1.0 -latk-1.0 -lcairo
|
|
-lc -lcrypto
|
|
'';
|
|
|
|
postPatch = ''
|
|
substituteInPlace restranslator.pas --replace /usr/ $out/
|
|
'';
|
|
|
|
preBuild = ''
|
|
FPCDIR=${fpc}/lib/fpc/${fpc.version} fpcmake -w
|
|
lazbuild -B transgui.lpr --lazarusdir=${lazarus}/share/lazarus
|
|
'';
|
|
|
|
makeFlags = [ "FPC=fpc" "PP=fpc" "INSTALL_PREFIX=$(out)" ];
|
|
|
|
LCL_PLATFORM = "gtk2";
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = pname;
|
|
exec = "${pname} %U";
|
|
icon = pname;
|
|
type = "Application";
|
|
comment = meta.description;
|
|
desktopName = "Transmission Remote GUI";
|
|
genericName = "BitTorrent Client";
|
|
categories = [ "Network" "FileTransfer" "P2P" "GTK" ];
|
|
startupNotify = true;
|
|
mimeTypes = [ "application/x-bittorrent" "x-scheme-handler/magnet" ];
|
|
};
|
|
|
|
postInstall = ''
|
|
mkdir -p "$out/share/applications"
|
|
cp $desktopItem/share/applications/* $out/share/applications
|
|
mkdir -p "$out/share/icons/hicolor/48x48/apps"
|
|
cp transgui.png "$out/share/icons/hicolor/48x48/apps"
|
|
mkdir -p "$out/share/transgui"
|
|
cp -r "./lang" "$out/share/transgui"
|
|
'';
|
|
|
|
passthru.updateScript = unstableGitUpdater {
|
|
tagPrefix = "v";
|
|
};
|
|
|
|
meta = {
|
|
description = "A cross platform front-end for the Transmission BitTorrent client";
|
|
homepage = "https://sourceforge.net/p/transgui";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ ramkromberg ];
|
|
mainProgram = "transgui";
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
|
};
|
|
}
|