nixos-config/pkgs/navi/default.nix

24 lines
579 B
Nix
Raw Normal View History

2020-03-13 05:01:10 +01:00
{ stdenv, fetchFromGitHub, ... }:
stdenv.mkDerivation rec {
version = "2.0.8";
name = "navi-${version}";
src = fetchFromGitHub {
owner = "denisidoro";
repo = "navi";
rev = "v${version}";
sha256 = "1kh4s7s595l95xirdb0fvgkdbig3zcfkdiqk8zdz9cfglzcm5192";
};
buildInputs = [ ];
meta = with stdenv.lib; {
description = "An interactive cheatsheet tool for the command-line";
homepage = "https://github.com/denisidoro/navi";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ mrVanDalo ];
};
}