nixpkgs/pkgs/development/tools/hexio/default.nix

38 lines
1,005 B
Nix
Raw Normal View History

2021-03-26 08:15:15 +00:00
{ lib, stdenv, fetchFromGitHub, pcsclite, pth, python2 }:
2016-08-07 15:41:47 +00:00
stdenv.mkDerivation rec {
pname = "hexio";
2017-02-24 09:12:24 +00:00
version = "1.0-RC1";
2016-08-07 15:41:47 +00:00
src = fetchFromGitHub {
sha256 = "08jxkdi0gjsi8s793f9kdlad0a58a0xpsaayrsnpn9bpmm5cgihq";
2017-02-24 09:12:24 +00:00
rev = "version-${version}";
2016-08-07 15:41:47 +00:00
owner = "vanrein";
repo = "hexio";
};
2021-03-26 08:15:15 +00:00
strictDeps = true;
buildInputs = [ pcsclite pth python2 ];
2016-08-07 15:41:47 +00:00
patchPhase = ''
substituteInPlace Makefile \
--replace '-I/usr/local/include/PCSC/' '-I${lib.getDev pcsclite}/include/PCSC/' \
2016-08-07 15:41:47 +00:00
--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 lib; {
2016-08-07 15:41:47 +00:00
description = "Low-level I/O helpers for hexadecimal, tty/serial devices and so on";
homepage = "https://github.com/vanrein/hexio";
2016-08-07 15:41:47 +00:00
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = with maintainers; [ leenaars ];
};
}