summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2018-01-03 15:23:14 -0800
committerJohn Wiegley <johnw@newartisans.com>2018-01-03 15:31:27 -0800
commit29510ca8fea668e82e6115d9227838504f67866c (patch)
tree8918440fa1c5e162023197842e6e5950b7813851 /pkgs
parent6d1a547b8df4fa7c7b79b3507ddea897ac32058b (diff)
downloadnixlib-29510ca8fea668e82e6115d9227838504f67866c.tar
nixlib-29510ca8fea668e82e6115d9227838504f67866c.tar.gz
nixlib-29510ca8fea668e82e6115d9227838504f67866c.tar.bz2
nixlib-29510ca8fea668e82e6115d9227838504f67866c.tar.lz
nixlib-29510ca8fea668e82e6115d9227838504f67866c.tar.xz
nixlib-29510ca8fea668e82e6115d9227838504f67866c.tar.zst
nixlib-29510ca8fea668e82e6115d9227838504f67866c.zip
pass-otp: Change oathtool reference into an absolute path
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/security/pass-otp/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/tools/security/pass-otp/default.nix b/pkgs/tools/security/pass-otp/default.nix
index 70350f669e97..327a9680f980 100644
--- a/pkgs/tools/security/pass-otp/default.nix
+++ b/pkgs/tools/security/pass-otp/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, pass, fetchFromGitHub }:
+{ stdenv, pass, fetchFromGitHub, oathToolkit }:
 stdenv.mkDerivation {
   name = "pass-otp";
 
@@ -9,7 +9,11 @@ stdenv.mkDerivation {
     sha256 = "0iklvcfgw1320dggdr02lq3bc7xvnd2934l1w9kkjpbsfmhs955c";
   };
 
-  buildInputs = [ pass ];
+  buildInputs = [ pass oathToolkit ];
+
+  patchPhase = ''
+    sed -i -e 's|OATH=\$(which oathtool)|OATH=${oathToolkit}/bin/oathtool|' otp.bash
+  '';
 
   installPhase = ''
     make PREFIX=$out install