ocamlPackages.spelll: 0.3 → 0.4

This commit is contained in:
Vincent Laporte 2023-03-14 08:38:50 +01:00
parent e2bd18f5e5
commit 86e0419e24
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -1,21 +1,22 @@
{ lib, fetchFromGitHub, buildDunePackage
, seq
, stdlib-shims
}:
buildDunePackage rec {
pname = "spelll";
version = "0.3";
version = "0.4";
useDune2 = true;
duneVersion = "3";
src = fetchFromGitHub {
owner = "c-cube";
repo = pname;
rev = "v${version}";
sha256 = "03adqisgsazsxdkrypp05k3g91hydfgcif2014il63gdbd9nhzlh";
hash = "sha256-nI8fdArYynR70PUJIgyogGBCe4gFhfVzuRdZzFGKqOc=";
};
propagatedBuildInputs = [ seq ];
propagatedBuildInputs = [ seq stdlib-shims ];
meta = {
inherit (src.meta) homepage;