summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/graphics/imgbrd-grabber
diff options
context:
space:
mode:
authorEvan Stoll <evan.stoll@rjginc.com>2020-12-01 15:21:21 -0500
committerEvan Stoll <evan.stoll@rjginc.com>2020-12-01 15:21:21 -0500
commit4f68a774018abe8f6b7dc4dca89f96f7e121a398 (patch)
treef1f7038c0493c8db7be47459130b36a5dcea83d1 /pkgs/applications/graphics/imgbrd-grabber
parent330b44dced09df33cb53d275ccdb9070dfb0736c (diff)
imgbrd-grabber: use pname instead of name; add meta
Diffstat (limited to 'pkgs/applications/graphics/imgbrd-grabber')
-rw-r--r--pkgs/applications/graphics/imgbrd-grabber/default.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/imgbrd-grabber/default.nix b/pkgs/applications/graphics/imgbrd-grabber/default.nix
index f07db4c5c4a6..abf934cebe8c 100644
--- a/pkgs/applications/graphics/imgbrd-grabber/default.nix
+++ b/pkgs/applications/graphics/imgbrd-grabber/default.nix
@@ -18,7 +18,7 @@
, typescript
}:
stdenv.mkDerivation rec {
- name = "imgbrd-grabber";
+ pname = "imgbrd-grabber";
version = "7.3.2";
src = fetchFromGitHub {
@@ -84,4 +84,11 @@ stdenv.mkDerivation rec {
'';
sourceRoot = "source/src";
+
+ meta = with stdenv.lib; {
+ description = "Very customizable imageboard/booru downloader with powerful filenaming features.";
+ license = licenses.asl20;
+ homepage = "https://bionus.github.io/imgbrd-grabber/";
+ maintainers = [ maintainers.evanjs ];
+ };
}