xannotate: init at 20150301

+26
+24
pkgs/tools/X11/xannotate/default.nix
···
··· 1 + {stdenv, fetchFromBitbucket, libX11}: 2 + stdenv.mkDerivation rec { 3 + name = "${pname}-${version}"; 4 + pname = "xannotate"; 5 + version = "20150301"; 6 + 7 + src = fetchFromBitbucket { 8 + owner = "blais"; 9 + repo = pname; 10 + rev = "e5591c2ec67ca39988f1fb2966e94f0f623f9aa7"; 11 + sha256 = "02jy19if0rnbxvs6b0l5mi9ifvdj2qmv0pv278v9kfs0kvir68ik"; 12 + }; 13 + 14 + buildInputs = [ libX11 ]; 15 + 16 + meta = { 17 + inherit version; 18 + description = "A tool to scribble over X windows"; 19 + license = stdenv.lib.licenses.gpl2Plus ; 20 + maintainers = [stdenv.lib.maintainers.raskin]; 21 + platforms = stdenv.lib.platforms.linux; 22 + homepage = "https://bitbucket.org/blais/xannotate"; 23 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 15999 16000 x42-plugins = callPackage ../applications/audio/x42-plugins { }; 16001 16002 xaos = callPackage ../applications/graphics/xaos { 16003 libpng = libpng12; 16004 };
··· 15999 16000 x42-plugins = callPackage ../applications/audio/x42-plugins { }; 16001 16002 + xannotate = callPackage ../tools/X11/xannotate {}; 16003 + 16004 xaos = callPackage ../applications/graphics/xaos { 16005 libpng = libpng12; 16006 };