nixpkgs/pkgs/desktops/xfce/panel-plugins/xfce4-notes-plugin/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.0 KiB
Nix
Raw Normal View History

2021-01-31 04:36:58 +00:00
{ lib
, stdenv
, fetchurl
, pkg-config
, intltool
, glib
, gtk3
2021-01-31 04:36:58 +00:00
, libxfce4ui
, libxfce4util
, xfce4-panel
2021-01-31 04:36:58 +00:00
, xfconf
, gitUpdater
2021-01-31 04:36:58 +00:00
}:
let
category = "panel-plugins";
2021-01-31 04:36:58 +00:00
in stdenv.mkDerivation rec {
pname = "xfce4-notes-plugin";
version = "1.11.0";
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "mirror://xfce/src/${category}/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
sha256 = "sha256-6zgkbesPyJU1+p/5uVPHYs7OIytVhdghD6uau/KCquM=";
};
nativeBuildInputs = [
2021-01-17 02:21:50 +00:00
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;
2021-11-28 18:51:44 +00:00
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
}