summary refs log tree commit diff
path: root/pkgs/tools/backup/restic
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2020-04-26 18:34:20 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2020-04-27 16:48:25 +1000
commit3e4f1e5b675a7be4be76196ba483a204cd926b9c (patch)
treed237414e6493184e5d079d58bba1b2326a4ffc04 /pkgs/tools/backup/restic
parent7c399a4ee080f33cc500a3fda33af6fccfd617bd (diff)
downloadnixpkgs-3e4f1e5b675a7be4be76196ba483a204cd926b9c.tar
nixpkgs-3e4f1e5b675a7be4be76196ba483a204cd926b9c.tar.gz
nixpkgs-3e4f1e5b675a7be4be76196ba483a204cd926b9c.tar.bz2
nixpkgs-3e4f1e5b675a7be4be76196ba483a204cd926b9c.tar.lz
nixpkgs-3e4f1e5b675a7be4be76196ba483a204cd926b9c.tar.xz
nixpkgs-3e4f1e5b675a7be4be76196ba483a204cd926b9c.tar.zst
nixpkgs-3e4f1e5b675a7be4be76196ba483a204cd926b9c.zip
restic: use subPackages, installShellFiles
Diffstat (limited to 'pkgs/tools/backup/restic')
-rw-r--r--pkgs/tools/backup/restic/default.nix26
1 files changed, 11 insertions, 15 deletions
diff --git a/pkgs/tools/backup/restic/default.nix b/pkgs/tools/backup/restic/default.nix
index f8dbeadff09..df9d613ee44 100644
--- a/pkgs/tools/backup/restic/default.nix
+++ b/pkgs/tools/backup/restic/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, buildGoPackage, fetchFromGitHub, nixosTests}:
+{ stdenv, lib, buildGoPackage, fetchFromGitHub, installShellFiles, nixosTests}:
 
 buildGoPackage rec {
   pname = "restic";
@@ -13,23 +13,19 @@ buildGoPackage rec {
     sha256 = "0lydll93n1lcn1fl669b9cikmzz9d6vfpc8ky3ng5fi8kj3v1dz7";
   };
 
+  subPackages = [ "cmd/restic" ];
+
+  nativeBuildInputs = [ installShellFiles ];
+
   passthru.tests.restic = nixosTests.restic;
 
-  # Use a custom install phase here as by default the
-  # 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
+  postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
     $bin/bin/restic generate \
-      --bash-completion $bin/etc/bash_completion.d/restic.sh \
-      --zsh-completion $bin/share/zsh/vendor-completions/_restic \
-      --man $bin/share/man/man1
+      --bash-completion restic.bash \
+      --zsh-completion restic.zsh \
+      --man .
+    installShellCompletion restic.{bash,zsh}
+    installManPage *.1
   '';
 
   meta = with lib; {