mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
garage: init at 0.6.0
This commit is contained in:
parent
3ecddf791d
commit
28486b2af8
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/filesystems/garage/default.nix
Normal file
26
pkgs/tools/filesystems/garage/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib, rustPlatform, fetchFromGitea, testVersion, garage }:
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "garage";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchFromGitea {
|
||||
domain = "git.deuxfleurs.fr";
|
||||
owner = "Deuxfleurs";
|
||||
repo = "garage";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-NNjqDOkMMRyXce+Z7RQpuffCuVhA1U3qH30rSv939ks=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-eKJxRcC43D8qVLORer34tlmsWhELTbcJbZLyf0MB618=";
|
||||
|
||||
passthru = {
|
||||
tests.version = testVersion { package = garage; };
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "S3-compatible object store for small self-hosted geo-distributed deployments";
|
||||
homepage = "https://garagehq.deuxfleurs.fr";
|
||||
license = lib.licenses.agpl3Only;
|
||||
maintainers = with lib.maintainers; [ nickcao _0x4A6F ];
|
||||
};
|
||||
}
|
|
@ -5587,6 +5587,8 @@ with pkgs;
|
|||
|
||||
gaphor = python3Packages.callPackage ../tools/misc/gaphor { };
|
||||
|
||||
garage = callPackage ../tools/filesystems/garage { };
|
||||
|
||||
garmin-plugin = callPackage ../applications/misc/garmin-plugin {};
|
||||
|
||||
garmintools = callPackage ../development/libraries/garmintools {};
|
||||
|
|
Loading…
Reference in a new issue