nixpkgs/pkgs/tools/X11/xannotate/default.nix

23 lines
591 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{lib, stdenv, fetchFromBitbucket, libX11}:
2017-03-18 11:25:06 +00:00
stdenv.mkDerivation rec {
pname = "xannotate";
version = "20150301";
2021-01-15 09:19:50 +00:00
2017-03-18 11:25:06 +00:00
src = fetchFromBitbucket {
owner = "blais";
repo = pname;
rev = "e5591c2ec67ca39988f1fb2966e94f0f623f9aa7";
sha256 = "02jy19if0rnbxvs6b0l5mi9ifvdj2qmv0pv278v9kfs0kvir68ik";
};
buildInputs = [ libX11 ];
meta = {
description = "A tool to scribble over X windows";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2Plus ;
maintainers = [lib.maintainers.raskin];
platforms = lib.platforms.linux;
homepage = "https://bitbucket.org/blais/xannotate";
2017-03-18 11:25:06 +00:00
};
}