Files
nixpkgs/pkgs/by-name/xa/xannotate/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

29 lines
644 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
libX11,
}:
stdenv.mkDerivation {
pname = "xannotate";
version = "20150301-unstable-2022-06-04";
src = fetchFromGitHub {
owner = "blais";
repo = "xannotate";
rev = "66821cce888e0067f77470ddac19da1670103d1d";
sha256 = "sha256-BDRg29ojBOFfwD4hx3XbcabwrJn2nfgI9Ld27FaQoRw=";
};
buildInputs = [ libX11 ];
meta = {
description = "Tool to scribble over X windows";
license = lib.licenses.gpl2Plus;
maintainers = [ lib.maintainers.raskin ];
platforms = lib.platforms.linux;
homepage = "https://github.com/blais/xannotate";
mainProgram = "xannotate";
};
}