commit
da739e278d
|
@ -0,0 +1,30 @@
|
||||||
|
{ stdenv, fetchurl, pkgconfig, bison, flex, intltool, gtk, libical, dbus_glib
|
||||||
|
, libnotify, popt, xfce
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "${p_name}-${ver_maj}.${ver_min}";
|
||||||
|
p_name = "orage";
|
||||||
|
ver_maj = "4.12";
|
||||||
|
ver_min = "1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://xfce/src/apps/${p_name}/${ver_maj}/${name}.tar.bz2";
|
||||||
|
sha256 = "0qlhvnl2m33vfxqlbkic2nmfpwyd4mq230jzhs48cg78392amy9w";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig intltool bison flex ];
|
||||||
|
|
||||||
|
buildInputs = [ gtk libical dbus_glib libnotify popt xfce.libxfce4util
|
||||||
|
xfce.xfce4panel ];
|
||||||
|
|
||||||
|
preFixup = "rm $out/share/icons/hicolor/icon-theme.cache ";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://www.xfce.org/projects/;
|
||||||
|
description = "A simple calendar application with reminders";
|
||||||
|
license = stdenv.lib.licenses.gpl2;
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -51,6 +51,7 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
|
||||||
|
|
||||||
gigolo = callPackage ./applications/gigolo.nix { };
|
gigolo = callPackage ./applications/gigolo.nix { };
|
||||||
mousepad = callPackage ./applications/mousepad.nix { };
|
mousepad = callPackage ./applications/mousepad.nix { };
|
||||||
|
orage = callPackage ./applications/orage.nix { };
|
||||||
parole = callPackage ./applications/parole.nix { };
|
parole = callPackage ./applications/parole.nix { };
|
||||||
ristretto = callPackage ./applications/ristretto.nix { };
|
ristretto = callPackage ./applications/ristretto.nix { };
|
||||||
terminal = xfce4terminal; # it has changed its name
|
terminal = xfce4terminal; # it has changed its name
|
||||||
|
|
Loading…
Reference in New Issue