mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
31 lines
922 B
Nix
31 lines
922 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "desync";
|
|
version = "0.9.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "folbricht";
|
|
repo = "desync";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-FeZhLY0fUUNNqa6qZZnh2z06+NgcAI6gY8LRR4xI5sM=";
|
|
};
|
|
|
|
vendorHash = "sha256-1RuqlDU809mtGn0gOFH/AW6HJo1cQqt8spiLp3/FpcI=";
|
|
|
|
# nix builder doesn't have access to test data; tests fail for reasons unrelated to binary being bad.
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Content-addressed binary distribution system";
|
|
longDescription = "An alternate implementation of the casync protocol and storage mechanism with a focus on production-readiness";
|
|
homepage = "https://github.com/folbricht/desync";
|
|
changelog = "https://github.com/folbricht/desync/releases/tag/v${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ chaduffy ];
|
|
};
|
|
}
|