2017-09-24 11:26:55 +01:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, autoreconfHook, pkgconfig, wrapGAppsHook
|
2019-09-12 15:25:05 +01:00
|
|
|
, glib, intltool, gtk3, gtksourceview }:
|
2017-09-24 11:26:55 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "xpad";
|
2019-01-16 07:08:38 +00:00
|
|
|
version = "5.4.0";
|
2017-09-24 11:26:55 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://launchpad.net/xpad/trunk/${version}/+download/xpad-${version}.tar.bz2";
|
2019-01-16 07:08:38 +00:00
|
|
|
sha256 = "1qpmlwn0bcw1q73ag0l0fdnlzmwawfvsy4g9y5b0vyrc58lcp5d3";
|
2017-09-24 11:26:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig wrapGAppsHook ];
|
|
|
|
|
2019-09-12 15:25:05 +01:00
|
|
|
buildInputs = [ glib intltool gtk3 gtksourceview ];
|
2017-09-24 11:26:55 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A sticky note application for jotting down things to remember";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://launchpad.net/xpad";
|
2017-09-24 11:26:55 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ michalrus ];
|
|
|
|
};
|
|
|
|
}
|