nixpkgs/pkgs/by-name/do/donkey/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

54 lines
1.5 KiB
Nix

{ stdenv
, fetchFromGitLab
, libmd
, coreutils
, lib
, testers
}:
stdenv.mkDerivation (finalAttrs: {
pname = "donkey";
version = "1.2.0";
src = fetchFromGitLab {
owner = "donkey";
repo = "donkey";
rev = "tags/release/${finalAttrs.version}";
hash = "sha256-2xgb9l0Eko39HJVROAWEIP3qLg5t/5h/rm2MoXoKnJI=";
};
sourceRoot = "${finalAttrs.src.name}/src";
buildInputs = [ libmd ];
preInstall = ''
# don't change the owner, use global permissions:
export INSTALL_PROGRAM="${coreutils}/bin/install -m 555"
export INSTALL_DATA="${coreutils}/bin/install -m 444"
'';
passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; };
meta = with lib; {
description = "Alternative for S/KEY's 'key' command";
longDescription = ''
Donkey is an alternative for S/KEY's "key" command. The new feature that
the original key doesn't have is print an entry for skeykeys as
follows;
kazu 0099 al02004 115d83956f1089b6 Apr 26,1995 22:13:27
This means that donkey is also an alternative for "keyinit". Since the
entry is printed to stdout (not to /etc/skeykeys), you can easily send
it to a remote operator by e-mail (with a PGP signature or something).
So, it is possible to initiate S/KEY without logging in from the console of
the host.
The name "Donkey" is an acronym of "Don't Key".
'';
homepage = "https://devel.ringlet.net/security/donkey";
license = licenses.gpl2Only;
maintainers = with maintainers; [ raboof ];
platforms = platforms.all;
};
})