xpad: init at 5.0.0 (#29720)

* xpad: init at 5.0.0

* xpad: wrapGAppsHook is required

authored by Michal Rus and committed by Jörg Thalheim 0e71e035 799d2848

+33
+29
pkgs/applications/misc/xpad/default.nix
···
··· 1 + { stdenv, fetchurl 2 + , autoreconfHook, pkgconfig, wrapGAppsHook 3 + , glib, intltool, gtk3, gtksourceview }: 4 + 5 + stdenv.mkDerivation rec { 6 + name = "xpad-${version}"; 7 + version = "5.0.0"; 8 + 9 + src = fetchurl { 10 + url = "https://launchpad.net/xpad/trunk/${version}/+download/xpad-${version}.tar.bz2"; 11 + sha256 = "02yikxg6z9bwla09ka001ppjlpbv5kbza3za9asazm5aiz376mkb"; 12 + }; 13 + 14 + nativeBuildInputs = [ autoreconfHook pkgconfig wrapGAppsHook ]; 15 + 16 + buildInputs = [ glib intltool gtk3 gtksourceview ]; 17 + 18 + autoreconfPhase = '' 19 + ./autogen.sh 20 + ''; 21 + 22 + meta = with stdenv.lib; { 23 + description = "A sticky note application for jotting down things to remember"; 24 + homepage = https://launchpad.net/xpad; 25 + license = licenses.gpl3; 26 + platforms = platforms.linux; 27 + maintainers = with maintainers; [ michalrus ]; 28 + }; 29 + }
+4
pkgs/top-level/all-packages.nix
··· 19335 19336 xosd = callPackage ../misc/xosd { }; 19337 19338 xsane = callPackage ../applications/graphics/sane/xsane.nix { 19339 libpng = libpng12; 19340 };
··· 19335 19336 xosd = callPackage ../misc/xosd { }; 19337 19338 + xpad = callPackage ../applications/misc/xpad { 19339 + inherit (gnome3) gtksourceview; 19340 + }; 19341 + 19342 xsane = callPackage ../applications/graphics/sane/xsane.nix { 19343 libpng = libpng12; 19344 };