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