Unverified Commit c1236157 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

omake: 0.10.6 → 0.10.7 (#394800)

parents 9348d24b a83347b1
Loading
Loading
Loading
Loading
+9 −8
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchurl,
  fetchFromGitHub,
  ocaml,
}:

stdenv.mkDerivation rec {

stdenv.mkDerivation (finalAttrs: {
  pname = "omake";
  version = "0.10.6";
  version = "0.10.7";

  src = fetchurl {
    url = "http://download.camlcity.org/download/${pname}-${version}.tar.gz";
    hash = "sha256-AuSZEnybyk8HaDZ7mbwDqjFXMXVQ7TDRuRU/aRY8/yE=";
  src = fetchFromGitHub {
    owner = "ocaml-omake";
    repo = "omake";
    tag = "omake-${finalAttrs.version}";
    hash = "sha256-5ZOdY3uGcI0KGpnr7epUwe2ueKCoLeaHGzaiTiXLNoc=";
  };

  strictDeps = true;
@@ -28,4 +29,4 @@ stdenv.mkDerivation rec {
    ];
    inherit (ocaml.meta) platforms;
  };
}
})