nixpkgs/pkgs/tools/security/hash-slinger/default.nix
Frederik Rietdijk fe538efe61 hash-slinger: stay with python2
Seems hard to check whether this one will work with python3.
2021-04-03 17:06:09 +02:00

46 lines
1.3 KiB
Nix

{ lib, stdenv, fetchFromGitHub, python2Packages, unbound, libreswan }:
let
pythonPackages = python2Packages;
in stdenv.mkDerivation rec {
pname = "hash-slinger";
version = "2.7";
src = fetchFromGitHub {
owner = "letoams";
repo = pname;
rev = version;
sha256 = "05wn744ydclpnpyah6yfjqlfjlasrrhzj48lqmm5a91nyps5yqyn";
};
pythonPath = with pythonPackages; [ dnspython m2crypto ipaddr python-gnupg
pyunbound ];
buildInputs = [ pythonPackages.wrapPython ];
propagatedBuildInputs = [ unbound libreswan ] ++ pythonPath;
propagatedUserEnvPkgs = [ unbound libreswan ];
patchPhase = ''
substituteInPlace Makefile \
--replace "$(DESTDIR)/usr" "$out"
substituteInPlace ipseckey \
--replace "/usr/sbin/ipsec" "${libreswan}/sbin/ipsec"
substituteInPlace tlsa \
--replace "/var/lib/unbound/root" "${pythonPackages.pyunbound}/etc/pyunbound/root"
patchShebangs *
'';
installPhase = ''
mkdir -p $out/bin $out/man $out/${pythonPackages.python.sitePackages}/
make install
wrapPythonPrograms
'';
meta = {
description = "Various tools to generate special DNS records";
homepage = "https://github.com/letoams/hash-slinger";
license = lib.licenses.gpl2Plus;
maintainers = [ lib.maintainers.leenaars ];
};
}