about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2023-08-01 17:50:10 +0300
committerDoron Behar <doron.behar@gmail.com>2023-08-01 17:50:10 +0300
commitc89298b854db23e4716e2d825717a02a46f55a48 (patch)
treeaf64dc1678d9450633829da7e04952c54d600549 /pkgs/applications
parent7965b589f303dfe01e6128eb0b52654cc444715d (diff)
confy: use fetchzip, for consistent hashes
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/confy/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/misc/confy/default.nix b/pkgs/applications/misc/confy/default.nix
index 24a21471b45b2..5762864fb5287 100644
--- a/pkgs/applications/misc/confy/default.nix
+++ b/pkgs/applications/misc/confy/default.nix
@@ -1,6 +1,6 @@
 { blueprint-compiler
 , desktop-file-utils
-, fetchurl
+, fetchzip
 , gobject-introspection
 , gtk4
 , lib
@@ -18,9 +18,9 @@ stdenv.mkDerivation rec {
   pname = "confy";
   version = "0.7.0";
 
-  src = fetchurl {
+  src = fetchzip {
     url = "https://git.sr.ht/~fabrixxm/confy/archive/${version}.tar.gz";
-    hash = "sha256-ZvIzgCMDfUW9g+qmY0ZIUoEF0PeVmINjOPwilmFzWDk=";
+    hash = "sha256-q8WASTNbiBuKb2tPQBmUL9ji60PRAPnYOTYxnUn0MAw=";
   };
 
   nativeBuildInputs = [