571c71e6f7
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.
32 lines
815 B
Nix
32 lines
815 B
Nix
{ lib, stdenv, fetchurl, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "hashcash";
|
|
version = "1.22";
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
src = fetchurl {
|
|
url = "http://www.hashcash.org/source/hashcash-${version}.tgz";
|
|
sha256 = "15kqaimwb2y8wvzpn73021bvay9mz1gqqfc40gk4hj6f84nz34h1";
|
|
};
|
|
|
|
makeFlags = [
|
|
"generic-openssl"
|
|
"LIBCRYPTO=-lcrypto"
|
|
];
|
|
|
|
installFlags = [
|
|
"INSTALL_PATH=${placeholder "out"}/bin"
|
|
"MAN_INSTALL_PATH=${placeholder "out"}/share/man/man1"
|
|
"DOC_INSTALL_PATH=${placeholder "out"}/share/doc/hashcash-$(version)"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Proof-of-work algorithm used as spam and denial-of-service counter measure";
|
|
homepage = "http://hashcash.org";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ kisonecat ];
|
|
};
|
|
}
|