nixpkgs/pkgs/development/tools/hexio/default.nix
2016-10-09 22:45:51 +02:00

37 lines
1 KiB
Nix

{ stdenv, fetchFromGitHub, fetchurl, python, pcsclite, pth, glibc }:
stdenv.mkDerivation rec {
pname = "hexio";
name = "${pname}-${version}";
version = "201605";
src = fetchFromGitHub {
sha256 = "08jxkdi0gjsi8s793f9kdlad0a58a0xpsaayrsnpn9bpmm5cgihq";
rev = "f6f963bd0fcd2808977e0ad82dcb3100691cdd7c";
owner = "vanrein";
repo = "hexio";
};
buildInputs = [ python pcsclite pth glibc ];
patchPhase = ''
substituteInPlace Makefile \
--replace '-I/usr/local/include/PCSC/' '-I${pcsclite}/include/PCSC/' \
--replace '-L/usr/local/lib/pth' '-I${pth}/lib/'
'';
installPhase = ''
mkdir -p $out/bin $out/lib $out/sbin $out/man
make DESTDIR=$out PREFIX=/ all
make DESTDIR=$out PREFIX=/ install
'';
meta = with stdenv.lib; {
description = "Low-level I/O helpers for hexadecimal, tty/serial devices and so on";
homepage = https://github.com/vanrein/hexio;
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = with maintainers; [ leenaars ];
};
}