Files
nixpkgs/pkgs/tools/misc/alarm-clock-applet/default.nix
Alexey Shmalko 9ba48ecb38 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
2016-07-01 03:06:50 +03:00

42 lines
842 B
Nix

{ 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 ];
};
}