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
28 lines
688 B
Nix
28 lines
688 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "tensorman";
|
|
version = "0.1.0-unstable-2024-06-24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pop-os";
|
|
repo = "tensorman";
|
|
rev = "24fa3b2bb06a29708162ee474a733e9a227b1778";
|
|
hash = "sha256-kI/dOw9JnhXmLqIgaljhRMc/SX35m7WQ9b6bQa6diZ0=";
|
|
};
|
|
|
|
cargoHash = "sha256-/Ul8+5MmTntQ0OprfG4QhUNjc3PktCandzTTWn4FD0Y=";
|
|
|
|
meta = with lib; {
|
|
description = "Utility for easy management of Tensorflow containers";
|
|
homepage = "https://github.com/pop-os/tensorman";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ thefenriswolf ];
|
|
mainProgram = "tensorman";
|
|
};
|
|
}
|