about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-02-02 18:59:46 +0100
committerVladimír Čunát <vcunat@gmail.com>2015-02-05 10:51:41 +0100
commit5fb4f2f39b3dce857c71de25dfe239df5b3789ae (patch)
tree4e89b4c1fb7fefc9f244a28b0750014131d5850f
parent217f6ed01be1c054fad4b62a8d7167080c1a6bb4 (diff)
downloadnixlib-5fb4f2f39b3dce857c71de25dfe239df5b3789ae.tar
nixlib-5fb4f2f39b3dce857c71de25dfe239df5b3789ae.tar.gz
nixlib-5fb4f2f39b3dce857c71de25dfe239df5b3789ae.tar.bz2
nixlib-5fb4f2f39b3dce857c71de25dfe239df5b3789ae.tar.lz
nixlib-5fb4f2f39b3dce857c71de25dfe239df5b3789ae.tar.xz
nixlib-5fb4f2f39b3dce857c71de25dfe239df5b3789ae.tar.zst
nixlib-5fb4f2f39b3dce857c71de25dfe239df5b3789ae.zip
fasd: work around non-deterministic failures
Example: http://hydra.nixos.org/build/19218521/nixlog/1/raw

(cherry picked from commit 31810da31c98d6e634e2b5cb8eece3e3a67ce0cc)
-rw-r--r--pkgs/tools/misc/fasd/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/tools/misc/fasd/default.nix b/pkgs/tools/misc/fasd/default.nix
index 54edaaa033a4..f34ce44633f3 100644
--- a/pkgs/tools/misc/fasd/default.nix
+++ b/pkgs/tools/misc/fasd/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, pandoc, ... } :
+{ stdenv, fetchgit, pandoc } :
 
 let
   rev = "287af2b80e0829b08dc6329b4fe8d8e5594d64b0";
@@ -13,13 +13,16 @@ stdenv.mkDerivation {
     sha256 = "0kv9iyfdf916x0gab9fzs4vmsnkaqmb6kh4xna485nqij89xzkgs";
   };
 
+  # seems to be needed non-deterministically (timestamps?)
+  nativeBuildInputs = [ pandoc ];
+
   installPhase = ''
     PREFIX=$out make install
   '';
 
   meta = {
     homepage = "https://github.com/clvv/fasd";
-    description = "quick command-line access to files and directories for POSIX shells";
+    description = "Quick command-line access to files and directories for POSIX shells";
     license = stdenv.lib.licenses.free; # https://github.com/clvv/fasd/blob/master/LICENSE
 
     longDescription = ''