2019-11-25 13:17:09 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "emplace";
|
2021-03-24 01:17:18 +00:00
|
|
|
version = "1.4.1";
|
2019-11-25 13:17:09 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tversteeg";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-03-24 01:17:18 +00:00
|
|
|
sha256 = "sha256-lBCGSeEVxlXrn1RHqMEYSXLOehJw/DiL+33nx4+rV2Y=";
|
2019-11-25 13:17:09 +00:00
|
|
|
};
|
|
|
|
|
2021-03-24 01:17:18 +00:00
|
|
|
cargoSha256 = "sha256-QL71pJ5RBWRRse5DXwctMvu+z818jEEQjaNBXHLy20Y=";
|
2019-11-25 13:17:09 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Mirror installed software on multiple machines";
|
|
|
|
homepage = "https://github.com/tversteeg/emplace";
|
2021-02-12 11:30:00 +00:00
|
|
|
license = licenses.agpl3Plus;
|
2020-11-17 11:02:06 +00:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
2019-11-25 13:17:09 +00:00
|
|
|
};
|
|
|
|
}
|