biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / tensorman / default.nix
blobb6f11d190c105c96241b17761dfc2e3b50f8b8f0
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage {
7   pname = "tensorman";
8   version = "unstable-2023-03-13";
10   src = fetchFromGitHub {
11     owner = "pop-os";
12     repo = "tensorman";
13     rev = "b1125f71b55a8d9a4d674a62fa1e8868d40d0f0d";
14     hash = "sha256-WMX+nzNQTGeSUxOfMHo+U0ICYx8rttXpQrQClwU2zX8=";
15   };
17   cargoHash = "sha256-y/AE2jTVetqBBExBlPEB0LwIVk+LjB2i0ZjijLPs9js=";
19   meta = with lib; {
20     description = "Utility for easy management of Tensorflow containers";
21     homepage = "https://github.com/pop-os/tensorman";
22     license = licenses.gpl3Only;
23     maintainers = with maintainers; [ thefenriswolf ];
24     mainProgram = "tensorman";
25   };