2024-07-24 06:01:17 +00:00
|
|
|
{ lib, buildDunePackage, opam, opam-repository, spdx_licenses }:
|
2020-05-20 21:27:46 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "opam-state";
|
|
|
|
|
|
|
|
inherit (opam) src version;
|
|
|
|
|
|
|
|
# get rid of check for curl at configure time
|
|
|
|
# opam-state does not call curl at run time
|
|
|
|
configureFlags = [ "--disable-checks" ];
|
|
|
|
|
2024-07-24 06:01:17 +00:00
|
|
|
propagatedBuildInputs = [ opam-repository spdx_licenses ];
|
2020-05-20 21:27:46 +00:00
|
|
|
|
|
|
|
meta = opam.meta // {
|
|
|
|
description = "OPAM development library handling the ~/.opam hierarchy, repository and switch states";
|
|
|
|
maintainers = with lib.maintainers; [ sternenseemann ];
|
|
|
|
};
|
|
|
|
}
|