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

ocamlPackages.tsdl: 0.9.9 → 1.0.0

+4 -3
+4 -3
pkgs/development/ocaml-modules/tsdl/default.nix
··· 7 7 8 8 let 9 9 pname = "tsdl"; 10 - version = "0.9.9"; 10 + version = "1.0.0"; 11 11 webpage = "https://erratique.ch/software/${pname}"; 12 12 in 13 13 14 14 stdenv.mkDerivation { 15 - name = "ocaml${ocaml.version}-${pname}-${version}"; 15 + pname = "ocaml${ocaml.version}-${pname}"; 16 + inherit version; 16 17 17 18 src = fetchurl { 18 19 url = "${webpage}/releases/${pname}-${version}.tbz"; 19 - sha256 = "sha256-GqFz+bYG2ESkAEJyP8DKud4JFfU5MGLulzJa5Z4sptQ="; 20 + hash = "sha256-XdgzCj9Uqplt/8Jk8rSFaQf8zu+9SZa8b9ZIlW/gjyE="; 20 21 }; 21 22 22 23 strictDeps = true;