From cbc58da3f08cd68b44042eaf1324859995337bbd Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 13 Feb 2015 06:45:36 +0100 Subject: [PATCH] ocaml-sqlite3: update from 2.0.8 to 2.0.9 --- pkgs/development/ocaml-modules/sqlite3/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/ocaml-modules/sqlite3/default.nix b/pkgs/development/ocaml-modules/sqlite3/default.nix index f6e289d183de..53549791b253 100644 --- a/pkgs/development/ocaml-modules/sqlite3/default.nix +++ b/pkgs/development/ocaml-modules/sqlite3/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, sqlite, ocaml, findlib, pkgconfig }: -stdenv.mkDerivation { - name = "ocaml-sqlite3-2.0.8"; +stdenv.mkDerivation rec { + name = "ocaml-sqlite3-${version}"; + version = "2.0.9"; src = fetchurl { - url = https://github.com/mmottl/sqlite3-ocaml/releases/download/v2.0.8/sqlite3-ocaml-2.0.8.tar.gz; - sha256 = "1xalhjg5pbyad6b8cijq7fm5ss7ipjz68hzycggac58rnshwn2ix"; + url = "https://github.com/mmottl/sqlite3-ocaml/releases/download/v${version}/sqlite3-ocaml-${version}.tar.gz"; + sha256 = "0rwsx1nfa3xqmbygim2qx45jqm1gwf08m70wmcwkx50f1qk3l551"; }; buildInputs = [ ocaml findlib pkgconfig sqlite ];