2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl
|
2024-05-15 15:35:15 +00:00
|
|
|
, autoreconfHook, pkg-config, wrapGAppsHook3
|
2020-04-24 23:36:52 +00:00
|
|
|
, glib, intltool, gtk3, gtksourceview }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "xpad";
|
|
|
|
version = "5.4.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://launchpad.net/xpad/trunk/${version}/+download/xpad-${version}.tar.bz2";
|
|
|
|
sha256 = "1qpmlwn0bcw1q73ag0l0fdnlzmwawfvsy4g9y5b0vyrc58lcp5d3";
|
|
|
|
};
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook3 intltool ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
buildInputs = [ glib gtk3 gtksourceview ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Sticky note application for jotting down things to remember";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "xpad";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://launchpad.net/xpad";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ michalrus ];
|
|
|
|
};
|
|
|
|
}
|