My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/mutagen-compose/default.nix

27 lines
719 B

{ lib, buildGo118Module, fetchFromGitHub, fetchzip }:
buildGo118Module rec {
pname = "mutagen-compose";
version = "0.14.0";
src = fetchFromGitHub {
owner = "mutagen-io";
repo = pname;
rev = "v${version}";
sha256 = "sha256-FNV4X9/BdnfFGKVJXNpCJLdr3Y29LrGi+zUuQ07xUbE=";
};
vendorSha256 = "sha256-5nt9YHMgaRpkFdOnBTU4gSdOtB3h9Cj5CCUjx9PJ/m8=";
doCheck = false;
subPackages = [ "cmd/mutagen-compose" ];
meta = with lib; {
description = "Compose with Mutagen integration";
homepage = "https://mutagen.io/";
changelog = "https://github.com/mutagen-io/mutagen-compose/releases/tag/v${version}";
maintainers = [ maintainers.matthewpi ];
license = licenses.mit;
};
}