add all licenses and navi package

feature/hass
Ingolf Wagner 2020-03-13 12:01:10 +08:00
parent 35e980a65a
commit 3361da4c56
Signed by: palo
GPG Key ID: 76BF5F1928B9618B
2 changed files with 32 additions and 0 deletions

23
pkgs/navi/default.nix Normal file
View File

@ -0,0 +1,23 @@
{ 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 ];
};
}

View File

@ -12,6 +12,13 @@ let
# seafile-shared = unstablePkgs.seafile-shared;
#};
allLicenses = let
licenses = builtins.map
(license: "echo '${license.shortName} : ${license.fullName}'")
(builtins.attrValues pkgs.stdenv.lib.licenses);
in pkgs.writers.writeBashBin "all-licenses"
(lib.concatStringsSep "\n" licenses);
seafileClient =
pkgs.seafile-client.override { seafile-shared = pkgs.seafile-shared; };
@ -309,6 +316,8 @@ in {
"$@"
'')
allLicenses
memo
nixfmt
dateutils