Merge pull request #108267 from MarcFontaine/pcimem
pcimem: init at unstable-2018-08-29
This commit is contained in:
commit
c5ad2c8cfd
30
pkgs/os-specific/linux/pcimem/default.nix
Normal file
30
pkgs/os-specific/linux/pcimem/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "pcimem";
|
||||||
|
version = "unstable-2018-08-29";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "billfarrow";
|
||||||
|
repo = pname;
|
||||||
|
rev = "09724edb1783a98da2b7ae53c5aaa87493aabc9b";
|
||||||
|
sha256 = "0zlbvcl5q4hgna11p3w00px1p8qgn8ga79lh6a2m7d597g86kbq3";
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs = [ "out" "doc" ];
|
||||||
|
|
||||||
|
makeFlags = [ "CFLAGS=-Wno-maybe-uninitialized" ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -D pcimem "$out/bin/pcimem"
|
||||||
|
install -D README "$doc/doc/README"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Simple method of reading and writing to memory registers on a PCI card";
|
||||||
|
homepage = "https://github.com/billfarrow/pcimem";
|
||||||
|
license = licenses.gpl2Only;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ mafo ];
|
||||||
|
};
|
||||||
|
}
|
@ -6599,6 +6599,8 @@ in
|
|||||||
|
|
||||||
pbzip2 = callPackage ../tools/compression/pbzip2 { };
|
pbzip2 = callPackage ../tools/compression/pbzip2 { };
|
||||||
|
|
||||||
|
pcimem = callPackage ../os-specific/linux/pcimem { };
|
||||||
|
|
||||||
pciutils = callPackage ../tools/system/pciutils { };
|
pciutils = callPackage ../tools/system/pciutils { };
|
||||||
|
|
||||||
pcsclite = callPackage ../tools/security/pcsclite {
|
pcsclite = callPackage ../tools/security/pcsclite {
|
||||||
|
Loading…
Reference in New Issue
Block a user