biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / xpad / default.nix
blob1206b39679abe0d5b1989674e323e19f68984ec4
1 { lib, stdenv, fetchurl
2 , autoreconfHook, pkg-config, wrapGAppsHook3
3 , glib, intltool, gtk3, gtksourceview }:
5 stdenv.mkDerivation rec {
6   pname = "xpad";
7   version = "5.4.0";
9   src = fetchurl {
10     url = "https://launchpad.net/xpad/trunk/${version}/+download/xpad-${version}.tar.bz2";
11     sha256 = "1qpmlwn0bcw1q73ag0l0fdnlzmwawfvsy4g9y5b0vyrc58lcp5d3";
12   };
14   nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook3 intltool ];
16   buildInputs = [ glib gtk3 gtksourceview ];
18   meta = with lib; {
19     description = "Sticky note application for jotting down things to remember";
20     mainProgram = "xpad";
21     homepage = "https://launchpad.net/xpad";
22     license = licenses.gpl3;
23     platforms = platforms.linux;
24     maintainers = with maintainers; [ michalrus ];
25   };