Skip to content

Commit

Permalink
fossil: 2.2 -> 2.3
Browse files Browse the repository at this point in the history
Fixes XSS vulnerability on the /help webpage. No CVE known.
  • Loading branch information
fpletz committed Sep 28, 2017
1 parent d2b6e9c commit faed026
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkgs/applications/version-management/fossil/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@
, tcllib, withJson ? true}:

stdenv.mkDerivation rec {
name = "fossil-2.2";
name = "fossil-${version}";
version = "2.3";

src = fetchurl {
urls =
urls =
[
https://www.fossil-scm.org/index.html/uv/fossil-src-2.2.tar.gz
"https://www.fossil-scm.org/index.html/uv/fossil-src-${version}.tar.gz"
];
name = "${name}.tar.gz";
sha256 = "0wfgacfg29dkl0c3l1rp5ji0kraa64gcbg5lh8p4m7mqdqcq53wv";
sha256 = "0paalvb4rdyr79v6rwspaha5n4dqb92df9irijha13m3apsanwzh";
};

buildInputs = [ zlib openssl readline sqlite which ed ]
Expand Down

0 comments on commit faed026

Please sign in to comment.