nixpkgs/pkgs/tools/misc/tensorman/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
677 B
Nix
Raw Normal View History

{ lib
, rustPlatform
, fetchFromGitHub
}:
2019-11-21 08:29:46 +00:00
rustPlatform.buildRustPackage {
2019-11-21 08:29:46 +00:00
pname = "tensorman";
version = "unstable-2023-03-13";
2019-11-21 08:29:46 +00:00
src = fetchFromGitHub {
owner = "pop-os";
repo = "tensorman";
rev = "b1125f71b55a8d9a4d674a62fa1e8868d40d0f0d";
hash = "sha256-WMX+nzNQTGeSUxOfMHo+U0ICYx8rttXpQrQClwU2zX8=";
2019-11-21 08:29:46 +00:00
};
cargoHash = "sha256-y/AE2jTVetqBBExBlPEB0LwIVk+LjB2i0ZjijLPs9js=";
2019-11-21 08:29:46 +00:00
meta = with lib; {
2019-11-21 08:29:46 +00:00
description = "Utility for easy management of Tensorflow containers";
homepage = "https://github.com/pop-os/tensorman";
license = licenses.gpl3Only;
2019-11-21 08:29:46 +00:00
maintainers = with maintainers; [ thefenriswolf ];
2023-11-27 01:17:53 +00:00
mainProgram = "tensorman";
2019-11-21 08:29:46 +00:00
};
}