3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #221124 from vbgl/ocaml-spelll-0.4

ocamlPackages.spelll: 0.3 → 0.4
This commit is contained in:
Weijia Wang 2023-03-16 00:13:48 +02:00 committed by GitHub
commit c7bf74ae68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;