nixpkgs/pkgs/os-specific/linux/xsensors/default.nix
Anderson Torres 492414af5f treewide: remove cstrahan from meta.maintainers - part 1
All the packages here are now orphaned.
2023-10-04 22:20:58 -03:00

24 lines
599 B
Nix

{ 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; [ ];
};
}