Merge master into staging-next

This commit is contained in:
github-actions[bot]
2021-02-09 12:19:41 +00:00
committed by GitHub
28 changed files with 370 additions and 68 deletions
+2 -2
View File
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
pname = "ddcutil";
version = "1.0.0";
version = "1.0.1";
src = fetchFromGitHub {
owner = "rockowitz";
repo = "ddcutil";
rev = "v${version}";
sha256 = "sha256-+HxezUWQHyL9r4QZkJyWzWnjquq/ux5W5j2B5prH8Fg=";
sha256 = "sha256-F/tKW81bAyYtwpxhl5XC8YyMB+6S0XmqqigwJY2WFDU=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
+35
View File
@@ -0,0 +1,35 @@
{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "iotools";
version = "unstable-2017-12-11";
src = fetchFromGitHub {
owner = "adurbin";
repo = pname;
rev = "18949fdc4dedb1da3f51ee83a582b112fb9f2c71";
sha256 = "0vymnah44d5bzsjhfmxkcrlrikkp0db22k7a1s8bknz7glk9fldn";
};
makeFlags = [ "DEBUG=0" "STATIC=0" ];
installPhase = ''
install -Dm755 iotools -t $out/bin
'';
meta = with lib; {
description = "Set of simple command line tools which allow access to
hardware device registers";
longDescription = ''
Provides a set of simple command line tools which allow access to
hardware device registers. Supported register interfaces include PCI,
IO, memory mapped IO, SMBus, CPUID, and MSR. Also included are some
utilities which allow for simple arithmetic, logical, and other
operations.
'';
homepage = "https://github.com/adurbin/iotools";
license = licenses.gpl2Only;
maintainers = with maintainers; [ felixsinger ];
platforms = platforms.linux;
};
}