omake: 0.10.5 → 0.10.6

This commit is contained in:
Vincent Laporte 2023-03-06 18:23:28 +01:00
parent 1bf51415ba
commit d934806f62
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -1,19 +1,18 @@
{ lib, stdenv, fetchurl, ocaml, ncurses }:
{ lib, stdenv, fetchurl, ocaml }:
stdenv.mkDerivation rec {
pname = "omake";
version = "0.10.5";
version = "0.10.6";
src = fetchurl {
url = "http://download.camlcity.org/download/${pname}-${version}.tar.gz";
sha256 = "sha256-VOFq2KLBbmZCRgHzfpD7p0iyF8yU1tTbyvTiOcpm98Q=";
hash = "sha256-AuSZEnybyk8HaDZ7mbwDqjFXMXVQ7TDRuRU/aRY8/yE=";
};
strictDeps = true;
nativeBuildInputs = [ ocaml ];
buildInputs = [ ncurses ];
meta = {
description = "A build system designed for scalability and portability";