Files
nixpkgs/pkgs/by-name/nu/nullidentdmod/package.nix
Janne Heß 5a6d0ee976 treewide: Drop a lot of my maintainership
I do not have the time or energy to handle all of this. Let alone my
GitHub notifications. This PR is in good faith and does not refer to
anything community-related. I will keep on doing nixpkgs work but the
pile of shame (let's call it that) needs to be cleaned. Thanks to
@mweinelt which whom I had a discussion and who made me aware of this
issue.
2026-08-12 16:24:54 +02:00

33 lines
738 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "nullidentdmod";
version = "1.3";
src = fetchFromGitHub {
owner = "Ranthrall";
repo = "nullidentdmod";
rev = "v${finalAttrs.version}";
sha256 = "1ahwm5pyidc6m07rh5ls2lc25kafrj233nnbcybprgl7bqdq1b0k";
};
installPhase = ''
mkdir -p $out/bin
install -Dm755 nullidentdmod $out/bin
'';
meta = {
description = "Simple identd that just replies with a random string or customized userid";
mainProgram = "nullidentdmod";
license = lib.licenses.gpl2Plus;
homepage = "https://github.com/Ranthrall/nullidentdmod";
maintainers = [ ];
platforms = lib.platforms.linux; # Must be run by systemd
};
})