nixpkgs/pkgs/os-specific/linux/xsensors/default.nix

24 lines
606 B
Nix
Raw Normal View History

2015-07-04 02:54:03 +00:00
{ stdenv, lib, fetchurl, gtk2, pkgconfig, lm_sensors }:
stdenv.mkDerivation rec {
pname = "xsensors";
2015-07-04 02:54:03 +00:00
version = "0.70";
src = fetchurl {
url = "http://www.linuxhardware.org/xsensors/xsensors-${version}.tar.gz";
sha256 = "1siplsfgvcxamyqf44h71jx6jdfmvhfm7mh0y1q8ps4zs6pj2zwh";
};
nativeBuildInputs = [ pkgconfig ];
2015-07-04 02:54:03 +00:00
buildInputs = [
gtk2 lm_sensors
2015-07-04 02:54:03 +00:00
];
patches = [
./remove-unused-variables.patch
./replace-deprecated-gtk.patch
];
meta = with lib; {
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ cstrahan ];
};
}