Files
nixpkgs/pkgs/by-name/do/doge/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

40 lines
934 B
Nix

{
lib,
python3Packages,
fetchFromGitHub,
}:
python3Packages.buildPythonApplication rec {
pname = "doge";
version = "3.9.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Olivia5k";
repo = "doge";
tag = version;
hash = "sha256-aJ1SFehjKiSc7osf5BOB1xjDnrkVXp37PQ5bNpbv1Mk=";
};
build-system = [ python3Packages.hatchling ];
dependencies = with python3Packages; [
python-dateutil
fullmoon
];
meta = {
description = "Wow very terminal doge";
longDescription = ''
Doge is a simple motd script based on the slightly stupid but very funny doge meme.
It prints random grammatically incorrect statements that are sometimes based on things from your computer.
'';
homepage = "https://github.com/Olivia5k/doge";
license = lib.licenses.mit;
mainProgram = "doge";
maintainers = with lib.maintainers; [
Gonzih
quantenzitrone
];
};
}