My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/fasd/default.nix

35 lines
1002 B

{ lib, stdenv, fetchFromGitHub } :
stdenv.mkDerivation rec {
pname = "fasd";
version = "unstable-2016-08-11";
src = fetchFromGitHub {
owner = "clvv";
repo = pname;
rev = "90b531a5daaa545c74c7d98974b54cbdb92659fc";
sha256 = "0i22qmhq3indpvwbxz7c472rdyp8grag55x7iyjz8gmyn8gxjc11";
};
installPhase = ''
PREFIX=$out make install
'';
meta = with lib; {
homepage = "https://github.com/clvv/fasd";
description = "Quick command-line access to files and directories for POSIX shells";
license = licenses.mit;
longDescription = ''
Fasd is a command-line productivity booster.
Fasd offers quick access to files and directories for POSIX shells. It is
inspired by tools like autojump, z and v. Fasd keeps track of files and
directories you have accessed, so that you can quickly reference them in the
command line.
'';
platforms = platforms.all;
maintainers = with maintainers; [ ];
mainProgram = "fasd";
};
}