mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
24 lines
606 B
Nix
24 lines
606 B
Nix
{ stdenv, lib, fetchurl, gtk2, pkgconfig, 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 = [ pkgconfig ];
|
|
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; [ cstrahan ];
|
|
};
|
|
}
|