about summary refs log tree commit diff
path: root/pkgs/by-name/to
diff options
context:
space:
mode:
authorEmery Hemingway <ehmry@posteo.net>2024-03-31 09:36:36 +0100
committerEmery Hemingway <ehmry@posteo.net>2024-03-31 09:39:25 +0100
commit636d8e09e56d13dce8525cfd2e0900b42309dc92 (patch)
treea5bdca24645f5bac57be721f3bbfded9da400f34 /pkgs/by-name/to
parent8736da4cc6e35748c6e6d06059971fb1063e75ff (diff)
toxic: 0.11.3 -> 0.15.1
Diffstat (limited to 'pkgs/by-name/to')
-rw-r--r--pkgs/by-name/to/toxic/package.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/by-name/to/toxic/package.nix b/pkgs/by-name/to/toxic/package.nix
index bd3f30adc6887..e33505d7373b2 100644
--- a/pkgs/by-name/to/toxic/package.nix
+++ b/pkgs/by-name/to/toxic/package.nix
@@ -4,13 +4,13 @@
 
 stdenv.mkDerivation rec {
   pname = "toxic";
-  version = "0.11.3";
+  version = "0.15.1";
 
   src = fetchFromGitHub {
-    owner  = "Tox";
+    owner  = "TokTok";
     repo   = "toxic";
     rev    = "v${version}";
-    sha256 = "sha256-BabRY9iu5ccEXo5POrWkWaIWAeQU4MVlMK8I+Iju6aQ=";
+    sha256 = "sha256-+nOjlQED2pbYwGV6IGeKK1pymBSrDVWCWKjZ42vib7E=";
   };
 
   makeFlags = [ "PREFIX=$(out)"];
@@ -23,11 +23,12 @@ stdenv.mkDerivation rec {
   ];
   nativeBuildInputs = [ pkg-config libconfig ];
 
-  meta = with lib; src.meta // {
+  meta = src.meta // {
     description = "Reference CLI for Tox";
     mainProgram = "toxic";
-    license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ ehmry ];
-    platforms = platforms.linux;
+    homepage = "https://github.com/TokTok/toxic";
+    license = lib.licenses.gpl3Plus;
+    maintainers = with lib.maintainers; [ ehmry ];
+    platforms = lib.platforms.linux;
   };
 }