diff options
Diffstat (limited to 'pkgs/trash')
-rw-r--r-- | pkgs/trash/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
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; + }; } |