about summary refs log tree commit diff
path: root/pkgs/applications/window-managers/sxhkd
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-11-11 21:04:26 -0600
committerMatthew Bauer <mjbauer95@gmail.com>2018-11-13 19:14:44 -0600
commit06c403e846dca7c06924a1cf754cfa10b608616f (patch)
tree245b08e299587518384174acb722e304bd5312eb /pkgs/applications/window-managers/sxhkd
parentbfbfe941abba2a0d7061c86d78b1e8facdeb17f8 (diff)
downloadnixlib-06c403e846dca7c06924a1cf754cfa10b608616f.tar
nixlib-06c403e846dca7c06924a1cf754cfa10b608616f.tar.gz
nixlib-06c403e846dca7c06924a1cf754cfa10b608616f.tar.bz2
nixlib-06c403e846dca7c06924a1cf754cfa10b608616f.tar.lz
nixlib-06c403e846dca7c06924a1cf754cfa10b608616f.tar.xz
nixlib-06c403e846dca7c06924a1cf754cfa10b608616f.tar.zst
nixlib-06c403e846dca7c06924a1cf754cfa10b608616f.zip
treewide: remove unstable packages
There’s nothing wrong with unstable packages when they are maintained
and frequently updated. However, when they become out-of-date, as many
do, it is usually best to just get rid of them as the stable version
is become newer than the unstable version. This removes any packages
called "unstable" that have not been updated in over 1 year. Affected
packages include:

- isyncUnstable
- sxhkd-unstable
- dosbox-unstable

Revert "treewide: remove unstable packages"

This reverts commit df01b0b37a04624cfe6f8d2ccb42b99289841b68.
Diffstat (limited to 'pkgs/applications/window-managers/sxhkd')
-rw-r--r--pkgs/applications/window-managers/sxhkd/unstable.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/applications/window-managers/sxhkd/unstable.nix b/pkgs/applications/window-managers/sxhkd/unstable.nix
deleted file mode 100644
index a3379259a8c4..000000000000
--- a/pkgs/applications/window-managers/sxhkd/unstable.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ stdenv, fetchFromGitHub, asciidoc, libxcb, xcbutil, xcbutilkeysyms, xcbutilwm }:
-
-stdenv.mkDerivation rec {
-  name = "sxhkd-unstable-2016-08-29";
-
-  src = fetchFromGitHub {
-    owner  = "baskerville";
-    repo   = "sxhkd";
-    rev    = "69b6acc7831bd333b39286c37188e5638ad0de27";
-    sha256 = "11i451hz0icsbxnvbq2bdl6r5kacxf6ps0yvi9ix3vkpxn4zcanh";
-  };
-
-  buildInputs = [ asciidoc libxcb xcbutil xcbutilkeysyms xcbutilwm ];
-
-  makeFlags = ''PREFIX=$(out)'';
-
-  meta = with stdenv.lib; {
-    description = "Simple X hotkey daemon (git version)";
-    inherit (src.meta) homepage;
-    license = licenses.bsd2;
-    platforms = platforms.linux;
-  };
-}