nixpkgs/pkgs/os-specific/linux/ioport/default.nix

18 lines
560 B
Nix
Raw Normal View History

{ lib, stdenv, perl, fetchurl }:
2017-04-30 21:34:17 +00:00
stdenv.mkDerivation {
name = "ioport-1.2";
src = fetchurl {
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 ];
meta = with lib; {
2017-04-30 21:34:17 +00:00
description = "Direct access to I/O ports from the command line";
homepage = "https://people.redhat.com/rjones/ioport/";
2017-04-30 21:34:17 +00:00
license = licenses.gpl2Plus;
platforms = [ "x86_64-linux" "i686-linux" ];
2017-04-30 21:34:17 +00:00
maintainers = [ maintainers.cleverca22 ];
};
}