mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
fasd: work around non-deterministic failures
Example: http://hydra.nixos.org/build/19218521/nixlog/1/raw CC @ellis.
This commit is contained in:
parent
8ec4c682a7
commit
31810da31c
1 changed files with 5 additions and 2 deletions
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue