about summary refs log tree commit diff
path: root/pkgs/tools/misc/alarm-clock-applet
AgeCommit message (Collapse)AuthorFilesLines
2021-01-16pkgs/tools: pkgconfig -> pkg-configBen Siraphob1-2/+2
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-2/+2
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2020-04-05gnome2.gnome-icon-theme: move to pkgs/data/iconsJosé Romildo Malaquias1-1/+2
2020-04-03treewide: rename gnome2.gnome_icon_theme package to use dashesJosé Romildo Malaquias1-1/+1
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-1/+1
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2018-08-10alarm-clock-applet: fix build (#44872)Alexey Shmalko1-7/+21
The build has been failing because sourceforge-served release include -Werror=format=2 flag, which enabled -Werror=format-y2k, which in turn stopped the build because of a debug log message formatting. Building release from GitHub works fine.
2016-10-02treewide: Fix more lib.optional misusesTuomas Tynkkynen1-2/+1
2016-09-12treewide: explicitly specify gtk and related package versionsKirill Boltaev1-4/+4
2016-07-09alarm-clock-applet: use default method for propagating gstreamer (#16786)Alexey Shmalko1-5/+2
2016-07-03alarm-clock-applet: fix finding gstreamer plugins and gconf at runtimeAlexey Shmalko1-2/+17
2016-07-01alarm-clock-applet: init at 0.3.4Alexey Shmalko1-0/+41
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