omake: 0.10.6 → 0.10.7 (#394800)

This commit is contained in:
Pol Dellaiera
2025-03-31 11:49:30 +02:00
committed by GitHub
+9 -8
View File
@@ -1,18 +1,19 @@
{
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;
};
}
})