xpad: 5.4.0 -> 5.8.0 (#396115)

authored by Peder Bergebakken Sundt and committed by GitHub dd72fe3b 98196aa8

+11 -11
+11 -11
pkgs/by-name/xp/xpad/package.nix
··· 8 8 glib, 9 9 intltool, 10 10 gtk3, 11 - gtksourceview, 11 + gtksourceview4, 12 12 }: 13 13 14 - stdenv.mkDerivation rec { 14 + stdenv.mkDerivation (finalAttrs: { 15 15 pname = "xpad"; 16 - version = "5.4.0"; 16 + version = "5.8.0"; 17 17 18 18 src = fetchurl { 19 - url = "https://launchpad.net/xpad/trunk/${version}/+download/xpad-${version}.tar.bz2"; 20 - sha256 = "1qpmlwn0bcw1q73ag0l0fdnlzmwawfvsy4g9y5b0vyrc58lcp5d3"; 19 + url = "https://launchpad.net/xpad/trunk/${finalAttrs.version}/+download/xpad-${finalAttrs.version}.tar.bz2"; 20 + hash = "sha256-8mBSMIhQxAaxWtuNhqzTli7xCvIrQnuxpc/07slvguk="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ ··· 30 30 buildInputs = [ 31 31 glib 32 32 gtk3 33 - gtksourceview 33 + gtksourceview4 34 34 ]; 35 35 36 - meta = with lib; { 36 + meta = { 37 37 description = "Sticky note application for jotting down things to remember"; 38 38 mainProgram = "xpad"; 39 39 homepage = "https://launchpad.net/xpad"; 40 - license = licenses.gpl3; 41 - platforms = platforms.linux; 42 - maintainers = with maintainers; [ michalrus ]; 40 + license = lib.licenses.gpl3; 41 + platforms = lib.platforms.linux; 42 + maintainers = with lib.maintainers; [ michalrus ]; 43 43 }; 44 - } 44 + })