lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.git: 3.12.0 -> 3.13.0 (#223522)

* ocamlPackages.awa: 0.1.2 -> 0.2.0

* ocamlPackages.git: 3.12.0 -> 3.13.0

authored by

Ulrik Strid and committed by
GitHub
5a775d7c 2371f8a8

+4 -11
+2 -2
pkgs/development/ocaml-modules/awa/default.nix
··· 8 8 9 9 buildDunePackage rec { 10 10 pname = "awa"; 11 - version = "0.1.2"; 11 + version = "0.2.0"; 12 12 13 13 minimalOCamlVersion = "4.08"; 14 14 duneVersion = "3"; 15 15 16 16 src = fetchurl { 17 17 url = "https://github.com/mirage/awa-ssh/releases/download/v${version}/awa-${version}.tbz"; 18 - hash = "sha256-HfIqvmvmdizPSfSHthj2syszVZXVhju7tI8yNEetc38="; 18 + hash = "sha256-hsmTuoubBdsEyGe8zmfG7JihY0LFM4lErpPKUVobIX8="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/ocaml-modules/git/default.nix
··· 8 8 9 9 buildDunePackage rec { 10 10 pname = "git"; 11 - version = "3.12.0"; 11 + version = "3.13.0"; 12 12 13 13 minimalOCamlVersion = "4.08"; 14 14 duneVersion = "3"; 15 15 16 16 src = fetchurl { 17 17 url = "https://github.com/mirage/ocaml-git/releases/download/${version}/git-${version}.tbz"; 18 - hash = "sha256-qgd5fny23J6pcOdgwB3Yt1UxJii2XE25OjcSVFdLMKA="; 18 + hash = "sha256-98w2Amze/B+YN/ENfSb0V8I2yyFUf8rSEOcUg1YbVdM="; 19 19 }; 20 20 21 21 # remove changelog for the carton package
-7
pkgs/development/ocaml-modules/git/unix.nix
··· 14 14 pname = "git-unix"; 15 15 inherit (git) version src; 16 16 17 - patches = [ 18 - (fetchpatch { 19 - url = "https://github.com/mirage/ocaml-git/commit/b708db8319cc456a5640618210d740a1e00468e9.patch"; 20 - hash = "sha256-Fe+eDhU/beZT/8br8XmOhHYJowaVEha16eGqyuu2Zr4="; 21 - }) 22 - ]; 23 - 24 17 minimalOCamlVersion = "4.08"; 25 18 duneVersion = "3"; 26 19