mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 11:03:57 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
63 lines
1.5 KiB
Nix
63 lines
1.5 KiB
Nix
{ lib, stdenv, fetchFromGitHub, fetchpatch, python3Packages
|
|
, x11Support ? !stdenv.hostPlatform.isDarwin
|
|
, xclip ? null
|
|
, pbcopy ? null
|
|
, useGeoIP ? false # Require /var/lib/geoip-databases/GeoIP.dat
|
|
}:
|
|
let
|
|
wrapperPath = lib.makeBinPath (
|
|
lib.optional x11Support xclip ++
|
|
lib.optional stdenv.hostPlatform.isDarwin pbcopy
|
|
);
|
|
in
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "tremc";
|
|
version = "0.9.3";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tremc";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-219rntmetmj1JFG+4NyYMFTWmrHKJL7fnLoMIvnTP4Y=";
|
|
};
|
|
|
|
patches = [
|
|
# Remove when tremc > 0.9.3 is released
|
|
(fetchpatch {
|
|
url = "https://github.com/tremc/tremc/commit/a8aaf9a6728a9ef3d8f13b3603456b0086122891.patch";
|
|
hash = "sha256-+HYdWTbcpvZqjshdHLZ+Svmr6U/aKFc3sy0aka6rn/A=";
|
|
name = "support-transmission-4.patch";
|
|
})
|
|
];
|
|
|
|
buildInputs = with python3Packages; [
|
|
python
|
|
wrapPython
|
|
];
|
|
|
|
pythonPath = with python3Packages; [
|
|
ipy
|
|
pyperclip
|
|
] ++
|
|
lib.optional useGeoIP geoip;
|
|
|
|
dontBuild = true;
|
|
doCheck = false;
|
|
|
|
makeWrapperArgs = ["--prefix PATH : ${lib.escapeShellArg wrapperPath}"];
|
|
|
|
installPhase = ''
|
|
make DESTDIR=$out install
|
|
wrapPythonPrograms
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Curses interface for transmission";
|
|
mainProgram = "tremc";
|
|
homepage = "https://github.com/tremc/tremc";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ kashw2 ];
|
|
};
|
|
}
|