Merge pull request #86045 from zowoq/restic
This commit is contained in:
commit
fa4747c38a
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, lib, buildGoPackage, fetchFromGitHub, nixosTests}:
|
{ stdenv, lib, buildGoPackage, fetchFromGitHub, installShellFiles, nixosTests}:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
pname = "restic";
|
pname = "restic";
|
||||||
|
@ -13,23 +13,19 @@ buildGoPackage rec {
|
||||||
sha256 = "0lydll93n1lcn1fl669b9cikmzz9d6vfpc8ky3ng5fi8kj3v1dz7";
|
sha256 = "0lydll93n1lcn1fl669b9cikmzz9d6vfpc8ky3ng5fi8kj3v1dz7";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
subPackages = [ "cmd/restic" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
passthru.tests.restic = nixosTests.restic;
|
passthru.tests.restic = nixosTests.restic;
|
||||||
|
|
||||||
# Use a custom install phase here as by default the
|
postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
||||||
# build-release-binaries and prepare-releases binaries are
|
|
||||||
# installed.
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -p "$bin/bin"
|
|
||||||
cp go/bin/restic "$bin/bin"
|
|
||||||
'' + lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
|
||||||
mkdir -p \
|
|
||||||
$bin/etc/bash_completion.d \
|
|
||||||
$bin/share/zsh/vendor-completions \
|
|
||||||
$bin/share/man/man1
|
|
||||||
$bin/bin/restic generate \
|
$bin/bin/restic generate \
|
||||||
--bash-completion $bin/etc/bash_completion.d/restic.sh \
|
--bash-completion restic.bash \
|
||||||
--zsh-completion $bin/share/zsh/vendor-completions/_restic \
|
--zsh-completion restic.zsh \
|
||||||
--man $bin/share/man/man1
|
--man .
|
||||||
|
installShellCompletion restic.{bash,zsh}
|
||||||
|
installManPage *.1
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in New Issue