fossil scm version patch

The attached patch advances the version of the fossil expression in
Nixpkgs to the latest release 1.36

From fdd5d610e35eed355f5f3fec9d3675aa60f36292 Mon Sep 17 00:00:00 2001
From: Karn Kallio <kkallio@skami.org>
Date: Tue, 8 Nov 2016 20:23:22 -0400
Subject: [PATCH] fossil : advance to version 1.36
This commit is contained in:
Karn Kallio 2016-11-08 20:25:39 -04:00 committed by Shea Levy
parent 4859376d68
commit 9b06e35d33

View File

@ -2,15 +2,15 @@
, tcllib, withJson ? true}:
stdenv.mkDerivation rec {
name = "fossil-1.35";
name = "fossil-1.36";
src = fetchurl {
urls =
[
https://www.fossil-scm.org/download/fossil-src-1.35.tar.gz
https://fossil-scm.org/index.html/uv/download/fossil-src-1.36.tar.gz
];
name = "${name}.tar.gz";
sha256 = "07ds6rhq69bhydpm9a01mgdhxf88p9b6y5hdnhn8gjc7ba92zyf1";
sha256 = "04px1mnq5dlc6gaihxj5nj6k7ac43wfryzifaairjh74qmgc6xi6";
};
buildInputs = [ zlib openssl readline sqlite which ed ]