3
0
Fork 0
forked from mirrors/nixpkgs

the-way: init at 0.3.2

* the-way: init at 0.3.2
This commit is contained in:
Sebastien Bariteau 2020-06-19 07:00:04 -04:00 committed by GitHub
parent 6d2c0b8255
commit 5a345d60d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "the-way";
version = "0.3.2";
src = fetchFromGitHub {
owner = "out-of-cheese-error";
repo = pname;
rev = "v${version}";
sha256 = "02aa4iwwi89r6sj1q5sj74n2cy1rj94yfh39cp97zlx4lam9pj6b";
};
cargoSha256 = "09d9gaa83djfkfdx3m4d3kkq550q8y67wb292mrj4xb0kcfrhnpq";
checkFlags = "--test-threads=1";
meta = with stdenv.lib; {
description = "Terminal code snippets manager";
homepage = "https://github.com/out-of-cheese-error/the-way";
license = with licenses; [ mit ];
maintainers = with maintainers; [ numkem ];
platforms = platforms.all;
};
}

View file

@ -3147,6 +3147,8 @@ in
teamocil = callPackage ../tools/misc/teamocil { };
the-way = callPackage ../development/tools/the-way { };
tsm-client = callPackage ../tools/backup/tsm-client { jdk8 = null; };
tsm-client-withGui = callPackage ../tools/backup/tsm-client { };