mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
f45863e49e
https://gitlab.xfce.org/panel-plugins/xfce4-notes-plugin/-/compare/xfce4-notes-plugin-1.10.0...xfce4-notes-plugin-1.11.0
53 lines
1.0 KiB
Nix
53 lines
1.0 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, pkg-config
|
|
, intltool
|
|
, glib
|
|
, gtk3
|
|
, libxfce4ui
|
|
, libxfce4util
|
|
, xfce4-panel
|
|
, xfconf
|
|
, gitUpdater
|
|
}:
|
|
|
|
let
|
|
category = "panel-plugins";
|
|
in stdenv.mkDerivation rec {
|
|
pname = "xfce4-notes-plugin";
|
|
version = "1.11.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/${category}/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "sha256-6zgkbesPyJU1+p/5uVPHYs7OIytVhdghD6uau/KCquM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
intltool
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk3
|
|
libxfce4ui
|
|
libxfce4util
|
|
xfce4-panel
|
|
xfconf
|
|
];
|
|
|
|
passthru.updateScript = gitUpdater {
|
|
url = "https://gitlab.xfce.org/panel-plugins/${pname}";
|
|
rev-prefix = "${pname}-";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://docs.xfce.org/panel-plugins/xfce4-notes-plugin";
|
|
description = "Sticky notes plugin for Xfce panel";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
|
};
|
|
}
|