evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / config / default.nix
blob43ad500602ee7bc274785160d594b96bfe870c0b
1 { lib
2 , buildDunePackage
3 , fetchurl
4 , ppxlib
5 , spices
6 }:
8 buildDunePackage rec {
9   pname = "config";
10   version = "0.0.3";
12   src = fetchurl {
13     url = "https://github.com/ocaml-sys/config.ml/releases/download/${version}/config-${version}.tbz";
14     hash = "sha256-bcRCfLX2ro8vnQTJiX2aYGJC+eD26vkPynMYg817YFM=";
15   };
17   propagatedBuildInputs = [
18     ppxlib
19     spices
20   ];
22   meta = {
23     description = "Ergonomic, lightweight conditional compilation through attributes";
24     homepage = "https://github.com/ocaml-sys/config.ml";
25     license = lib.licenses.mit;
26   };