1{ stdenv, fetchgit } :
2
3let
4 rev = "61ce53be996189e1c325916e45a7dc0aa89660e3";
5in
6stdenv.mkDerivation {
7
8 name = "fasd-git-2015-03-29";
9
10 src = fetchgit {
11 url = "https://github.com/clvv/fasd.git";
12 inherit rev;
13 sha256 = "1fd36ff065ae73de2d6b1bae2131c18c8c4dea98ca63d96b0396e8b291072b5e";
14 };
15
16 installPhase = ''
17 PREFIX=$out make install
18 '';
19
20 meta = {
21 homepage = "https://github.com/clvv/fasd";
22 description = "Quick command-line access to files and directories for POSIX shells";
23 license = stdenv.lib.licenses.free; # https://github.com/clvv/fasd/blob/master/LICENSE
24
25 longDescription = ''
26 Fasd is a command-line productivity booster.
27 Fasd offers quick access to files and directories for POSIX shells. It is
28 inspired by tools like autojump, z and v. Fasd keeps track of files and
29 directories you have accessed, so that you can quickly reference them in the
30 command line.
31 '';
32
33 platforms = stdenv.lib.platforms.all;
34 };
35}