2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, perl, fetchurl }:
|
2017-04-30 21:34:17 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "ioport-1.2";
|
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://people.redhat.com/rjones/ioport/files/ioport-1.2.tar.gz";
|
2017-04-30 21:34:17 +00:00
|
|
|
sha256 = "1h4d5g78y7kla0zl25jgyrk43wy3m3bygqg0blki357bc55irb3z";
|
|
|
|
};
|
|
|
|
buildInputs = [ perl ];
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-04-30 21:34:17 +00:00
|
|
|
description = "Direct access to I/O ports from the command line";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://people.redhat.com/rjones/ioport/";
|
2017-04-30 21:34:17 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2017-12-03 17:44:58 +00:00
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
2017-04-30 21:34:17 +00:00
|
|
|
maintainers = [ maintainers.cleverca22 ];
|
|
|
|
};
|
|
|
|
}
|