1 { lib, stdenv, fetchurl
2 , autoreconfHook, pkg-config, wrapGAppsHook3
3 , glib, intltool, gtk3, gtksourceview }:
5 stdenv.mkDerivation rec {
10 url = "https://launchpad.net/xpad/trunk/${version}/+download/xpad-${version}.tar.bz2";
11 sha256 = "1qpmlwn0bcw1q73ag0l0fdnlzmwawfvsy4g9y5b0vyrc58lcp5d3";
14 nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook3 intltool ];
16 buildInputs = [ glib gtk3 gtksourceview ];
19 description = "Sticky note application for jotting down things to remember";
21 homepage = "https://launchpad.net/xpad";
22 license = licenses.gpl3;
23 platforms = platforms.linux;
24 maintainers = with maintainers; [ michalrus ];