diff options
author | Linnnus <[email protected]> | 2023-10-01 20:14:05 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2023-10-01 20:14:05 +0200 |
commit | 877db4137c34216fc2623570bc155d73e4b27f0b (patch) | |
tree | 5a867eb260f2e604a8e7853166b1694d1ef4fad2 /pkgs/trash/default.nix | |
parent | bb5319539738e39fd4c5412ffff2acb97369e9c3 (diff) |
Add description to pgks
Diffstat (limited to 'pkgs/trash/default.nix')
-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; + }; } |