about summary refs log tree commit diff
path: root/pkgs/servers/web-apps
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2024-02-12 13:02:20 +0100
committerGitHub <noreply@github.com>2024-02-12 13:02:20 +0100
commit88e66deef19b2b920a4bae96a9a7cb5f4eafb9a9 (patch)
tree03396f2054c4d7d2f84ae11ee0d45360977d4b07 /pkgs/servers/web-apps
parent5600847c87e4fe1df53987ba83425fc32b7f61df (diff)
parent9f89f93f52878971273cce82d751e61140334006 (diff)
downloadnixlib-88e66deef19b2b920a4bae96a9a7cb5f4eafb9a9.tar
nixlib-88e66deef19b2b920a4bae96a9a7cb5f4eafb9a9.tar.gz
nixlib-88e66deef19b2b920a4bae96a9a7cb5f4eafb9a9.tar.bz2
nixlib-88e66deef19b2b920a4bae96a9a7cb5f4eafb9a9.tar.lz
nixlib-88e66deef19b2b920a4bae96a9a7cb5f4eafb9a9.tar.xz
nixlib-88e66deef19b2b920a4bae96a9a7cb5f4eafb9a9.tar.zst
nixlib-88e66deef19b2b920a4bae96a9a7cb5f4eafb9a9.zip
Merge pull request #287572 from trofi/invoiceplane-fix-hash
invoiceplane: fix source hash
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 ];