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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
590 B
Nix
Raw Normal View History

{ lib, stdenv, perl, fetchurl }:
2017-04-30 23:34:17 +02:00
stdenv.mkDerivation rec {
pname = "ioport";
version = "1.2";
2017-04-30 23:34:17 +02:00
src = fetchurl {
url = "https://people.redhat.com/rjones/ioport/files/ioport-${version}.tar.gz";
2017-04-30 23:34:17 +02:00
sha256 = "1h4d5g78y7kla0zl25jgyrk43wy3m3bygqg0blki357bc55irb3z";
};
2017-04-30 23:34:17 +02:00
buildInputs = [ perl ];
meta = with lib; {
2017-04-30 23:34:17 +02:00
description = "Direct access to I/O ports from the command line";
homepage = "https://people.redhat.com/rjones/ioport/";
2017-04-30 23:34:17 +02:00
license = licenses.gpl2Plus;
platforms = [ "x86_64-linux" "i686-linux" ];
2017-04-30 23:34:17 +02:00
maintainers = [ maintainers.cleverca22 ];
};
}