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
29 lines
665 B
Nix
29 lines
665 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitLab,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "taschenrechner";
|
|
version = "2.0.0";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.fem-net.de";
|
|
owner = "mabl";
|
|
repo = "taschenrechner";
|
|
rev = version;
|
|
hash = "sha256-ZkyZpCOSo30XEjfh6bLiTLQs/efSFtwdlpIu9bO5Sdc=";
|
|
};
|
|
|
|
cargoHash = "sha256-29gqkJe/8ghAgAeioQ2r+AYgOI6lzMnDut4WF0Q59Xg=";
|
|
|
|
meta = with lib; {
|
|
description = "Cli-calculator written in Rust";
|
|
homepage = "https://gitlab.fem-net.de/mabl/taschenrechner";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ netali ];
|
|
mainProgram = "taschenrechner";
|
|
};
|
|
}
|