about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/X11/xannotate/default.nix
blob: 9c88a038e3eeb67ff59125c12b19c7258af7621f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{lib, stdenv, fetchFromBitbucket, libX11}:
stdenv.mkDerivation rec {
  pname = "xannotate";
  version = "20150301";

  src = fetchFromBitbucket {
    owner = "blais";
    repo = pname;
    rev = "e5591c2ec67ca39988f1fb2966e94f0f623f9aa7";
    sha256 = "02jy19if0rnbxvs6b0l5mi9ifvdj2qmv0pv278v9kfs0kvir68ik";
  };

  buildInputs = [ libX11 ];

  meta = {
    inherit version;
    description = "A tool to scribble over X windows";
    license = lib.licenses.gpl2Plus ;
    maintainers = [lib.maintainers.raskin];
    platforms = lib.platforms.linux;
    homepage = "https://bitbucket.org/blais/xannotate";
  };
}