about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/xsensors/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/xsensors/default.nix')
-rw-r--r--pkgs/os-specific/linux/xsensors/default.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/os-specific/linux/xsensors/default.nix b/pkgs/os-specific/linux/xsensors/default.nix
deleted file mode 100644
index e3639fefffa4..000000000000
--- a/pkgs/os-specific/linux/xsensors/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ stdenv, lib, fetchurl, gtk2, pkg-config, lm_sensors }:
-
-stdenv.mkDerivation rec {
-  pname = "xsensors";
-  version = "0.70";
-  src = fetchurl {
-    url = "http://www.linuxhardware.org/xsensors/xsensors-${version}.tar.gz";
-    sha256 = "1siplsfgvcxamyqf44h71jx6jdfmvhfm7mh0y1q8ps4zs6pj2zwh";
-  };
-  nativeBuildInputs = [ pkg-config ];
-  buildInputs = [
-    gtk2 lm_sensors
-  ];
-  patches = [
-    ./remove-unused-variables.patch
-    ./replace-deprecated-gtk.patch
-  ];
-  meta = with lib; {
-    license = licenses.gpl2;
-    platforms = platforms.linux;
-    maintainers = with maintainers; [ ];
-  };
-}