blob: ddaecf7ddb4a5ef1cd8d50ae8a2bf690b916b7cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
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";
};
}
|