diff --git a/pkgs/tools/misc/tensorman/default.nix b/pkgs/tools/misc/tensorman/default.nix index 307a472c73f..c5742b21afa 100644 --- a/pkgs/tools/misc/tensorman/default.nix +++ b/pkgs/tools/misc/tensorman/default.nix @@ -1,25 +1,25 @@ -{ pkg-config, lib, rustPlatform, rustc, cargo, docker, openssl, fetchFromGitHub }: +{ lib +, rustPlatform +, fetchFromGitHub +}: -rustPlatform.buildRustPackage rec { +rustPlatform.buildRustPackage { pname = "tensorman"; - version = "0.1.0"; + version = "unstable-2023-03-13"; src = fetchFromGitHub { owner = "pop-os"; repo = "tensorman"; - rev = version; - sha256 = "0ywb53snvymmwh10hm6whckz7dwmpqa4rxiggd24y178jdfrm2ns"; + rev = "b1125f71b55a8d9a4d674a62fa1e8868d40d0f0d"; + hash = "sha256-WMX+nzNQTGeSUxOfMHo+U0ICYx8rttXpQrQClwU2zX8="; }; - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ openssl ]; - cargoSha256 = "1lza3kc43581a09ss82bb5p0r74dy7si2x07cj4cb8dizl60b71v"; + cargoHash = "sha256-y/AE2jTVetqBBExBlPEB0LwIVk+LjB2i0ZjijLPs9js="; meta = with lib; { description = "Utility for easy management of Tensorflow containers"; - homepage = "https://github.com/pop-os/tensorman/"; - license = lib.licenses.gpl3; - platforms = [ "x86_64-linux" ]; + homepage = "https://github.com/pop-os/tensorman"; + license = licenses.gpl3Only; maintainers = with maintainers; [ thefenriswolf ]; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 56043e998bf..eed4f7d20a5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -33819,9 +33819,7 @@ with pkgs; spike = callPackage ../applications/virtualization/spike { }; - tensorman = callPackage ../tools/misc/tensorman { - openssl = openssl_1_1; - }; + tensorman = callPackage ../tools/misc/tensorman { }; spideroak = callPackage ../applications/networking/spideroak { };