7 stdenv.mkDerivation rec {
11 src = fetchFromGitHub {
12 owner = "julian-klode";
15 hash = "sha256-LxVcYj2WKHbhNu5x/DFkxQPOYrVkNvwiE/qcODq52Lc=";
23 patchShebangs triehash.pl
33 install -d $out/bin $out/share/doc/triehash/ $out/share/triehash/
34 install triehash.pl $out/bin/triehash
35 install README.md $out/share/doc/triehash/
36 cp -r tests/ $out/share/triehash/tests/
42 homepage = "https://github.com/julian-klode/triehash";
43 description = "Order-preserving minimal perfect hash function generator";
44 license = with licenses; mit;
45 maintainers = with maintainers; [ AndersonTorres ];
46 platforms = perlPackages.perl.meta.platforms;
47 mainProgram = "triehash";