Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
785 B
Nix
36 lines
785 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3Packages,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "xpaste";
|
|
version = "1.6";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ossobv";
|
|
repo = "xpaste";
|
|
tag = "v${version}";
|
|
hash = "sha256-eVnoLG+06UTOkvGhzL/XS4JBrEwbXYZ1fuNTIW7YAfE=";
|
|
};
|
|
|
|
build-system = with python3Packages; [ setuptools ];
|
|
|
|
dependencies = with python3Packages; [
|
|
xlib
|
|
];
|
|
|
|
# no tests, no python module to import, no version output to check
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Paste text into X windows that don't work with selections";
|
|
mainProgram = "xpaste";
|
|
homepage = "https://github.com/ossobv/xpaste";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ gador ];
|
|
};
|
|
}
|