nixpkgs/pkgs/by-name/mk/mkp224o/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

48 lines
1.7 KiB
Nix

{ stdenv, lib, fetchFromGitHub, autoreconfHook, libsodium }:
stdenv.mkDerivation rec {
pname = "mkp224o";
version = "1.7.0";
src = fetchFromGitHub {
owner = "cathugger";
repo = "mkp224o";
rev = "v${version}";
sha256 = "sha256-OL3xhoxIS1OqfVp0QboENFdNH/e1Aq1R/MFFM9LNFbQ=";
};
buildCommand =
let
# compile few variants with different implementation of crypto
# the fastest depends on a particular cpu
variants = [
{ suffix = "ref10"; configureFlags = ["--enable-ref10"]; }
{ suffix = "donna"; configureFlags = ["--enable-donna"]; }
] ++ lib.optionals stdenv.hostPlatform.isx86 [
{ suffix = "donna-sse2"; configureFlags = ["--enable-donna-sse2"]; }
] ++ lib.optionals (!stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [
{ suffix = "amd64-51-30k"; configureFlags = ["--enable-amd64-51-30k"]; }
{ suffix = "amd64-64-24k"; configureFlags = ["--enable-amd64-64-24k"]; }
];
in
lib.concatMapStrings ({suffix, configureFlags}: ''
install -D ${
stdenv.mkDerivation {
name = "mkp224o-${suffix}-${version}";
inherit version src configureFlags;
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libsodium ];
installPhase = "install -D mkp224o $out";
}
} $out/bin/mkp224o-${suffix}
'') variants;
meta = with lib; {
description = "Vanity address generator for tor onion v3 (ed25519) hidden services";
homepage = "http://cathug2kyi4ilneggumrenayhuhsvrgn6qv2y47bgeet42iivkpynqad.onion/";
license = licenses.cc0;
platforms = platforms.unix;
maintainers = [ ];
};
}