xfce.xfce4-timer-plugin: 1.6.0 -> 1.7.0
This commit is contained in:
parent
37be87b61f
commit
360be696ad
@ -1,5 +1,4 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4-panel
|
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4-panel, libxfce4ui, gtk3, hicolor-icon-theme, xfce }:
|
||||||
, libxfce4ui, xfconf, gtk2, hicolor-icon-theme, xfce }:
|
|
||||||
|
|
||||||
let
|
let
|
||||||
category = "panel-plugins";
|
category = "panel-plugins";
|
||||||
@ -7,17 +6,25 @@ in
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "xfce4-timer-plugin";
|
pname = "xfce4-timer-plugin";
|
||||||
version = "1.6.0";
|
version = "1.7.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://xfce/src/${category}/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
|
url = "mirror://xfce/src/${category}/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
|
||||||
sha256 = "0z46gyw3ihcd1jf0m5z1dsc790xv1cpi8mk1dagj3i4v14gx5mrr";
|
sha256 = "16vypwwjwfk7nn4n16rfgn0z78jqrmbgxmc1r46269lrwd1m6kif";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ intltool libxfce4util libxfce4ui xfce4-panel xfconf
|
nativeBuildInputs = [
|
||||||
gtk2 hicolor-icon-theme ];
|
pkgconfig
|
||||||
|
intltool
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
buildInputs = [
|
||||||
|
libxfce4util
|
||||||
|
libxfce4ui
|
||||||
|
xfce4-panel
|
||||||
|
gtk3
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
@ -28,11 +35,10 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://goodies.xfce.org/projects/panel-plugins/${pname}";
|
homepage = "https://docs.xfce.org/panel-plugins/xfce4-timer-plugin";
|
||||||
description = "A simple XFCE panel plugin that lets the user run an alarm at a specified time or at the end of a specified countdown period";
|
description = "Simple countdown and alarm plugin for the Xfce panel";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = [ ];
|
maintainers = [ ];
|
||||||
broken = true;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user