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
This commit is contained in:
parent
17e8032adb
commit
9ba48ecb38
41
pkgs/tools/misc/alarm-clock-applet/default.nix
Normal file
41
pkgs/tools/misc/alarm-clock-applet/default.nix
Normal file
@ -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 { };
|
remarkjs = callPackage ../development/web/remarkjs { };
|
||||||
|
|
||||||
|
alarm-clock-applet = callPackage ../tools/misc/alarm-clock-applet { };
|
||||||
|
|
||||||
remind = callPackage ../tools/misc/remind { };
|
remind = callPackage ../tools/misc/remind { };
|
||||||
|
|
||||||
remmina = callPackage ../applications/networking/remote/remmina {};
|
remmina = callPackage ../applications/networking/remote/remmina {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user