lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

libgourou: 0.8.1 -> 0.8.2

+12 -4
+12 -4
pkgs/development/libraries/libgourou/default.nix
··· 1 - { lib, stdenv, fetchzip, pugixml, updfparser, curl, openssl, libzip 2 - , installShellFiles }: 1 + { lib 2 + , stdenv 3 + , fetchzip 4 + , pugixml 5 + , updfparser 6 + , curl 7 + , openssl 8 + , libzip 9 + , installShellFiles 10 + }: 3 11 4 12 stdenv.mkDerivation rec { 5 13 name = "libgourou"; 6 - version = "0.8.1"; 14 + version = "0.8.2"; 7 15 8 16 src = fetchzip { 9 17 url = "https://indefero.soutade.fr/p/${name}/source/download/v${version}/"; 10 - sha256 = "sha256-X56K4z1+k62Q9pxnN8kx35oc7+uJJN/o/tpnKx1FjwE="; 18 + sha256 = "sha256-adkrvBCgN07Ir+J3JFCy+X9p9609lj1w8nElrlHXTxc"; 11 19 extension = "zip"; 12 20 }; 13 21