emplace: init at 0.2.5
This commit is contained in:
parent
83c24adfca
commit
5a27aacf9d
23
pkgs/tools/package-management/emplace/default.nix
Normal file
23
pkgs/tools/package-management/emplace/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib, rustPlatform, fetchFromGitHub }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "emplace";
|
||||
version = "0.2.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tversteeg";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0ys61wfga7kakfhq2b7yk2ygp8ffar43w4bfa6g483dq7ysqi5hl";
|
||||
};
|
||||
|
||||
cargoSha256 = "07336a5xrc7kwgkasl42g1sqad35v0dmpmv1hxr1w5j1wpggw3bj";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Mirror installed software on multiple machines";
|
||||
homepage = "https://github.com/tversteeg/emplace";
|
||||
license = licenses.agpl3;
|
||||
maintainers = with maintainers; [ filalex77 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -853,6 +853,8 @@ in
|
||||
|
||||
elvish = callPackage ../shells/elvish { };
|
||||
|
||||
emplace = callPackage ../tools/package-management/emplace { };
|
||||
|
||||
encryptr = callPackage ../tools/security/encryptr {
|
||||
gconf = gnome2.GConf;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user