mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
xpad: init at 5.0.0 (#29720)
* xpad: init at 5.0.0 * xpad: wrapGAppsHook is required
This commit is contained in:
parent
799d28480b
commit
0e71e03583
29
pkgs/applications/misc/xpad/default.nix
Normal file
29
pkgs/applications/misc/xpad/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchurl
|
||||
, autoreconfHook, pkgconfig, wrapGAppsHook
|
||||
, glib, intltool, gtk3, gtksourceview }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "xpad-${version}";
|
||||
version = "5.0.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://launchpad.net/xpad/trunk/${version}/+download/xpad-${version}.tar.bz2";
|
||||
sha256 = "02yikxg6z9bwla09ka001ppjlpbv5kbza3za9asazm5aiz376mkb";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig wrapGAppsHook ];
|
||||
|
||||
buildInputs = [ glib intltool gtk3 gtksourceview ];
|
||||
|
||||
autoreconfPhase = ''
|
||||
./autogen.sh
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A sticky note application for jotting down things to remember";
|
||||
homepage = https://launchpad.net/xpad;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ michalrus ];
|
||||
};
|
||||
}
|
|
@ -19335,6 +19335,10 @@ with pkgs;
|
|||
|
||||
xosd = callPackage ../misc/xosd { };
|
||||
|
||||
xpad = callPackage ../applications/misc/xpad {
|
||||
inherit (gnome3) gtksourceview;
|
||||
};
|
||||
|
||||
xsane = callPackage ../applications/graphics/sane/xsane.nix {
|
||||
libpng = libpng12;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue