xannotate: init at 20150301
This commit is contained in:
parent
266fb8845a
commit
6e74e165cb
24
pkgs/tools/X11/xannotate/default.nix
Normal file
24
pkgs/tools/X11/xannotate/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{stdenv, fetchFromBitbucket, libX11}:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
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 = stdenv.lib.licenses.gpl2Plus ;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
homepage = "https://bitbucket.org/blais/xannotate";
|
||||
};
|
||||
}
|
@ -15999,6 +15999,8 @@ with pkgs;
|
||||
|
||||
x42-plugins = callPackage ../applications/audio/x42-plugins { };
|
||||
|
||||
xannotate = callPackage ../tools/X11/xannotate {};
|
||||
|
||||
xaos = callPackage ../applications/graphics/xaos {
|
||||
libpng = libpng12;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user