diff options
-rw-r--r-- | pkgs/duksebot/default.nix | 4 | ||||
-rw-r--r-- | pkgs/still-awake/default.nix | 1 | ||||
-rw-r--r-- | pkgs/tcl-cmark/default.nix | 7 | ||||
-rw-r--r-- | pkgs/trash/default.nix | 8 |
4 files changed, 17 insertions, 3 deletions
diff --git a/pkgs/duksebot/default.nix b/pkgs/duksebot/default.nix index 6908854..ac3868d 100644 --- a/pkgs/duksebot/default.nix +++ b/pkgs/duksebot/default.nix @@ -1,7 +1,5 @@ -{ lib -, python3 +{ python3 , fetchFromGitHub -, fetchPypi , writeShellScriptBin }: diff --git a/pkgs/still-awake/default.nix b/pkgs/still-awake/default.nix index a83dd63..9285346 100644 --- a/pkgs/still-awake/default.nix +++ b/pkgs/still-awake/default.nix @@ -33,6 +33,7 @@ stdenv.mkDerivation { meta = with lib; { description = "Small program which shuts down Mac, if user is asleep"; + license = licenses.unlicense; platforms = platforms.darwin; }; } diff --git a/pkgs/tcl-cmark/default.nix b/pkgs/tcl-cmark/default.nix index ccbf0ff..4f8a5ce 100644 --- a/pkgs/tcl-cmark/default.nix +++ b/pkgs/tcl-cmark/default.nix @@ -3,6 +3,7 @@ , autoreconfHook , cmark-gfm , fetchFromGitHub +, lib }: tcl.mkTclDerivation { @@ -22,4 +23,10 @@ tcl.mkTclDerivation { nativeBuildInputs = [ pkg-config autoreconfHook ]; buildInputs = [ cmark-gfm ]; + + meta = with lib; { + description = "Tcl bindings to the cmark-gfm Github Flavoured CommonMark/Markdown library"; + homepage = "https://github.com/apnadkarni/tcl-cmark/"; + license = licenses.bsd3; + }; } diff --git a/pkgs/trash/default.nix b/pkgs/trash/default.nix index e9e84c9..8f7a287 100644 --- a/pkgs/trash/default.nix +++ b/pkgs/trash/default.nix @@ -2,6 +2,7 @@ , fetchFromGitHub , perl534Packages , darwin +, lib }: stdenv.mkDerivation rec { @@ -35,4 +36,11 @@ stdenv.mkDerivation rec { # I like to alias as del because trash is so hard spell ln -s $out/bin/trash $out/bin/del ''; + + meta = with lib; { + description = "This is a small command-line program for OS X that moves files or folders to the trash."; + homepage = "https://github.com/ali-rantakari/trash"; + license = licenses.mit; + platforms = platforms.darwin; + }; } |