Skip to content

Commit

Permalink
alarm-clock-applet: init at 0.3.4
Browse files Browse the repository at this point in the history
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:
NixOS#10559
  • Loading branch information
rasendubi committed Jul 1, 2016
1 parent 17e8032 commit 9ba48ec
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
41 changes: 41 additions & 0 deletions pkgs/tools/misc/alarm-clock-applet/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {};
Expand Down

0 comments on commit 9ba48ec

Please sign in to comment.