summary refs log tree commit diff
path: root/pkgs/os-specific/linux/rfkill
diff options
context:
space:
mode:
authorV <v@anomalous.eu>2020-08-23 17:16:30 +0200
committerV <v@anomalous.eu>2020-08-24 02:49:27 +0200
commitb63b5eda6829ea8ea974333c0e0381835fa17df4 (patch)
tree10298ea6fb8479271880e960b9bfdf451d99584b /pkgs/os-specific/linux/rfkill
parentdd0c15b34154162d07e221b518433b04cfb264e7 (diff)
downloadnixpkgs-b63b5eda6829ea8ea974333c0e0381835fa17df4.tar
nixpkgs-b63b5eda6829ea8ea974333c0e0381835fa17df4.tar.gz
nixpkgs-b63b5eda6829ea8ea974333c0e0381835fa17df4.tar.bz2
nixpkgs-b63b5eda6829ea8ea974333c0e0381835fa17df4.tar.lz
nixpkgs-b63b5eda6829ea8ea974333c0e0381835fa17df4.tar.xz
nixpkgs-b63b5eda6829ea8ea974333c0e0381835fa17df4.tar.zst
nixpkgs-b63b5eda6829ea8ea974333c0e0381835fa17df4.zip
rfkill: remove
rfkill was subsumed by util-linux in 2017 [1], and the upstream has not
been updated in over 5 years [2]. This package shadows the rfkill from
util-linux, so it can be completely removed with no breaking changes,
because util-linux is in the base package set in nixos/system-path.

[1] https://github.com/karelzak/util-linux/commit/d17fb726b562a69e8f174d46fa6cf794abc129cd
[2] https://git.sipsolutions.net/rfkill.git/log/
Diffstat (limited to 'pkgs/os-specific/linux/rfkill')
-rw-r--r--pkgs/os-specific/linux/rfkill/default.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/pkgs/os-specific/linux/rfkill/default.nix b/pkgs/os-specific/linux/rfkill/default.nix
deleted file mode 100644
index 10d46a84821..00000000000
--- a/pkgs/os-specific/linux/rfkill/default.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ stdenv, fetchurl }:
-
-stdenv.mkDerivation rec {
-  name = "rfkill-0.5";
-
-  src = fetchurl {
-    url = "mirror://kernel/software/network/rfkill/${name}.tar.bz2";
-    sha256 = "01zs7p9kd92pxgcgwl5w46h3iyx4acfg6m1j5fgnflsaa350q5iy";
-  };
-
-  makeFlags = [ "PREFIX=$(out)" ];
-
-  meta = with stdenv.lib; {
-    homepage = "http://wireless.kernel.org/en/users/Documentation/rfkill";
-    description = "A tool to query, enable and disable wireless devices";
-    platforms = platforms.linux;
-    maintainers = [ maintainers.eelco ];
-    license = licenses.isc;
-  };
-}