nixpkgs/pkgs/applications/misc/xpad/default.nix
2021-01-16 23:49:59 -08:00

26 lines
753 B
Nix

{ lib, stdenv, fetchurl
, autoreconfHook, pkg-config, wrapGAppsHook
, 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";
};
nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook ];
buildInputs = [ glib intltool gtk3 gtksourceview ];
meta = with 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 ];
};
}