1{ lib, stdenv, perl, fetchurl }:
2
3stdenv.mkDerivation rec {
4 pname = "ioport";
5 version = "1.2";
6
7 src = fetchurl {
8 url = "https://people.redhat.com/rjones/ioport/files/ioport-${version}.tar.gz";
9 sha256 = "1h4d5g78y7kla0zl25jgyrk43wy3m3bygqg0blki357bc55irb3z";
10 };
11
12 buildInputs = [ perl ];
13
14 meta = with lib; {
15 description = "Direct access to I/O ports from the command line";
16 homepage = "https://people.redhat.com/rjones/ioport/";
17 license = licenses.gpl2Plus;
18 platforms = [ "x86_64-linux" "i686-linux" ];
19 maintainers = [ maintainers.cleverca22 ];
20 };
21}