Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ocaml-sqlite3: update from 2.0.8 to 2.0.9

+5 -4
+5 -4
pkgs/development/ocaml-modules/sqlite3/default.nix
··· 1 1 { stdenv, fetchurl, sqlite, ocaml, findlib, pkgconfig }: 2 2 3 - stdenv.mkDerivation { 4 - name = "ocaml-sqlite3-2.0.8"; 3 + stdenv.mkDerivation rec { 4 + name = "ocaml-sqlite3-${version}"; 5 + version = "2.0.9"; 5 6 6 7 src = fetchurl { 7 - url = https://github.com/mmottl/sqlite3-ocaml/releases/download/v2.0.8/sqlite3-ocaml-2.0.8.tar.gz; 8 - sha256 = "1xalhjg5pbyad6b8cijq7fm5ss7ipjz68hzycggac58rnshwn2ix"; 8 + url = "https://github.com/mmottl/sqlite3-ocaml/releases/download/v${version}/sqlite3-ocaml-${version}.tar.gz"; 9 + sha256 = "0rwsx1nfa3xqmbygim2qx45jqm1gwf08m70wmcwkx50f1qk3l551"; 9 10 }; 10 11 11 12 buildInputs = [ ocaml findlib pkgconfig sqlite ];