alarm-clock-applet: init at 0.3.4

There were a couple of issue before the application run normally.

The first one is GConf error:
https://nixos.org/wiki/Solve_GConf_errors_when_running_GNOME_applications

The second one is absence of gst plugins:
https://github.com/NixOS/nixpkgs/issues/10559
wip/yesman
Alexey Shmalko 8 years ago
parent 17e8032adb
commit 9ba48ecb38
No known key found for this signature in database
GPG Key ID: DCEF7BCCEB3066C3
  1. 41
      pkgs/tools/misc/alarm-clock-applet/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,41 @@
{ stdenv, fetchurl, pkgconfig
, glib
, gtk2
, gst_all_1
, gnome
, libnotify
, libxml2
, libunique
, intltool
}:
stdenv.mkDerivation rec {
version = "0.3.4";
name = "alarm-clock-applet-${version}";
src = fetchurl {
url = "http://launchpad.net/alarm-clock/trunk/${version}/+download/${name}.tar.gz";
sha256 = "1mrrw5cgv0izdmhdg83vprvbj6062yzk77b2nr1nx6hhmk00946r";
};
buildInputs = [
pkgconfig
glib
gtk2
gst_all_1.gstreamer
gnome.GConf
gnome.gnome_icon_theme
libnotify
libxml2
libunique
intltool
];
meta = with stdenv.lib; {
homepage = http://alarm-clock.pseudoberries.com/;
description = "A fully-featured alarm clock for your GNOME panel or equivalent";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.rasendubi ];
};
}

@ -3199,6 +3199,8 @@ in
remarkjs = callPackage ../development/web/remarkjs { };
alarm-clock-applet = callPackage ../tools/misc/alarm-clock-applet { };
remind = callPackage ../tools/misc/remind { };
remmina = callPackage ../applications/networking/remote/remmina {};

Loading…
Cancel
Save