Merge pull request #73852 from thefenriswolf/master
tensorman: init at 0.1.0
This commit is contained in:
commit
2dfa46efa1
@ -6727,6 +6727,12 @@
|
|||||||
githubId = 42933;
|
githubId = 42933;
|
||||||
name = "Andrew Childs";
|
name = "Andrew Childs";
|
||||||
};
|
};
|
||||||
|
thefenriswolf = {
|
||||||
|
email = "stefan.rohrbacher97@gmail.com";
|
||||||
|
github = "thefenriswolf";
|
||||||
|
githubId = "8547242";
|
||||||
|
name = "Stefan Rohrbacher";
|
||||||
|
};
|
||||||
thesola10 = {
|
thesola10 = {
|
||||||
email = "thesola10@bobile.fr";
|
email = "thesola10@bobile.fr";
|
||||||
github = "thesola10";
|
github = "thesola10";
|
||||||
|
24
pkgs/tools/misc/tensorman/default.nix
Normal file
24
pkgs/tools/misc/tensorman/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ pkgconfig, stdenv, rustPlatform, rustc, cargo, docker, openssl, fetchFromGitHub }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "tensorman";
|
||||||
|
version = "0.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "pop-os";
|
||||||
|
repo = "tensorman";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0ywb53snvymmwh10hm6whckz7dwmpqa4rxiggd24y178jdfrm2ns";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig openssl ];
|
||||||
|
cargoSha256 = "1gh5w6zzrvjk60bqaf355fagijy723rvmqjh4laksd96pmzdfwn9";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Utility for easy management of Tensorflow containers";
|
||||||
|
homepage = "https://github.com/pop-os/tensorman/";
|
||||||
|
license = stdenv.lib.licenses.gpl3;
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
maintainers = with maintainers; [ thefenriswolf ];
|
||||||
|
};
|
||||||
|
}
|
@ -21037,6 +21037,8 @@ in
|
|||||||
|
|
||||||
spike = callPackage ../applications/virtualization/spike { };
|
spike = callPackage ../applications/virtualization/spike { };
|
||||||
|
|
||||||
|
tensorman = callPackage ../tools/misc/tensorman { };
|
||||||
|
|
||||||
spideroak = callPackage ../applications/networking/spideroak { };
|
spideroak = callPackage ../applications/networking/spideroak { };
|
||||||
|
|
||||||
split2flac = callPackage ../applications/audio/split2flac { };
|
split2flac = callPackage ../applications/audio/split2flac { };
|
||||||
|
Loading…
Reference in New Issue
Block a user