about summary refs log tree commit diff
path: root/pkgs/servers/web-apps
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2024-02-09 20:54:24 +0000
committerSergei Trofimovich <slyich@gmail.com>2024-02-10 09:29:11 +0000
commit9f89f93f52878971273cce82d751e61140334006 (patch)
treea779fa6224552507700f2481c415ddaba0345775 /pkgs/servers/web-apps
parent442d407992384ed9c0e6d352de75b69079904e4e (diff)
downloadnixlib-9f89f93f52878971273cce82d751e61140334006.tar
nixlib-9f89f93f52878971273cce82d751e61140334006.tar.gz
nixlib-9f89f93f52878971273cce82d751e61140334006.tar.bz2
nixlib-9f89f93f52878971273cce82d751e61140334006.tar.lz
nixlib-9f89f93f52878971273cce82d751e61140334006.tar.xz
nixlib-9f89f93f52878971273cce82d751e61140334006.tar.zst
nixlib-9f89f93f52878971273cce82d751e61140334006.zip
invoiceplane: fix source hash
Without the change source fetch fails as:

    error: hash mismatch in fixed-output derivation '/nix/store/v3wg0ivrglq81zli3b7lybwsmkp9y8w4-v1.6.1.zip.drv':
             specified: sha256-QSl/9hnAd9QxQm0xyZJ4ElIQDSOVStSzWa+fq3AJHjw=
                got:    sha256-66vXxE4pTUMkmPalLgJrCt2pl2BSWOJ3tiJ5K5wspYY=

Co-authored-by: Robert Schütz <github@dotlambda.de>
Diffstat (limited to 'pkgs/servers/web-apps')
-rw-r--r--pkgs/servers/web-apps/invoiceplane/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/web-apps/invoiceplane/default.nix b/pkgs/servers/web-apps/invoiceplane/default.nix
index 596992d10a59..8f4265cbd10b 100644
--- a/pkgs/servers/web-apps/invoiceplane/default.nix
+++ b/pkgs/servers/web-apps/invoiceplane/default.nix
@@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "https://github.com/InvoicePlane/InvoicePlane/releases/download/v${version}/v${version}.zip";
-    sha256 = "sha256-QSl/9hnAd9QxQm0xyZJ4ElIQDSOVStSzWa+fq3AJHjw=";
+    hash = "sha256-66vXxE4pTUMkmPalLgJrCt2pl2BSWOJ3tiJ5K5wspYY=";
   };
 
   nativeBuildInputs = [ unzip ];