2015-05-17 22:43:13 +00:00
|
|
|
{ stdenv, fetchurl, perl, read-edid }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "i2c-tools-${version}";
|
2018-12-06 00:19:19 +00:00
|
|
|
version = "4.1";
|
2015-05-17 22:43:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-30 00:43:54 +00:00
|
|
|
url = "https://www.kernel.org/pub/software/utils/i2c-tools/${name}.tar.xz";
|
2018-12-06 00:19:19 +00:00
|
|
|
sha256 = "1m97hpwqfaqjl9xvr4pvz2vdrsdvxbcn0nnx8pamnyc3s7pikcjp";
|
2015-05-17 22:43:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace eeprom/decode-edid --replace "/usr/sbin/parse-edid" "${read-edid}/bin/parse-edid"
|
|
|
|
substituteInPlace stub/i2c-stub-from-dump --replace "/sbin/" ""
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2018-12-06 00:19:19 +00:00
|
|
|
make install PREFIX=$out
|
2015-05-17 22:43:13 +00:00
|
|
|
rm -rf $out/include # Installs include/linux/i2c-dev.h that conflics with kernel headers
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Set of I2C tools for Linux";
|
2018-09-03 20:14:32 +00:00
|
|
|
homepage = https://i2c.wiki.kernel.org/index.php/I2C_Tools;
|
2015-05-17 22:43:13 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.dezgeg ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|