python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / fasd / default.nix
blob76c7731e27f2cb6db907745bb153ada1c94931e5
1 { lib, stdenv, fetchFromGitHub } :
3 stdenv.mkDerivation rec {
4   pname = "fasd";
5   version = "unstable-2016-08-11";
7   src = fetchFromGitHub {
8     owner = "clvv";
9     repo = pname;
10     rev = "90b531a5daaa545c74c7d98974b54cbdb92659fc";
11     sha256 = "0i22qmhq3indpvwbxz7c472rdyp8grag55x7iyjz8gmyn8gxjc11";
12   };
14   installPhase = ''
15     PREFIX=$out make install
16   '';
18   meta = with lib; {
19     homepage = "https://github.com/clvv/fasd";
20     description = "Quick command-line access to files and directories for POSIX shells";
21     license = licenses.mit;
23     longDescription = ''
24       Fasd is a command-line productivity booster.
25       Fasd offers quick access to files and directories for POSIX shells. It is
26       inspired by tools like autojump, z and v. Fasd keeps track of files and
27       directories you have accessed, so that you can quickly reference them in the
28       command line.
29     '';
31     platforms = platforms.all;
32     maintainers = with maintainers; [ ];
33     mainProgram = "fasd";
34   };