mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
parent
583470209f
commit
da247171b1
1 changed files with 17 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
{ lib, buildGoModule, fetchFromGitHub, fetchzip }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "mutagen";
|
||||
|
@ -13,10 +13,26 @@ buildGoModule rec {
|
|||
|
||||
vendorSha256 = "0szs9yc49fyh55ra1wf8zj76kdah0x49d45cgivk3gqh2hl17j6l";
|
||||
|
||||
agents = fetchzip {
|
||||
name = "mutagen-agents-${version}";
|
||||
# The package architecture does not matter since all packages contain identical mutagen-agents.tar.gz.
|
||||
url = "https://github.com/mutagen-io/mutagen/releases/download/v${version}/mutagen_linux_amd64_v${version}.tar.gz";
|
||||
stripRoot = false;
|
||||
extraPostFetch = ''
|
||||
rm $out/mutagen # Keep only mutagen-agents.tar.gz.
|
||||
'';
|
||||
sha256 = "0k8iif09kvxfxx6qm5qmkf3lr7ar6i98ivkndimj680ah9v1hkj8";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
subPackages = [ "cmd/mutagen" "cmd/mutagen-agent" ];
|
||||
|
||||
postInstall = ''
|
||||
install -d $out/libexec
|
||||
ln -s ${agents}/mutagen-agents.tar.gz $out/libexec/
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Make remote development work with your local tools";
|
||||
homepage = "https://mutagen.io/";
|
||||
|
|
Loading…
Reference in a new issue