3
0
Fork 0
forked from mirrors/nixpkgs

nix-output-monitor: use hermes-json-0.2.0.1

This commit is contained in:
Dennis Gosnell 2023-03-22 21:46:11 +09:00
parent e2f247c39e
commit 3009eda91b
No known key found for this signature in database
GPG key ID: 462E0C03D11422F4

View file

@ -3,6 +3,7 @@
expect,
haskellPackages,
installShellFiles,
lib
}: let
inherit (haskell.lib.compose) justStaticExecutables overrideCabal;
overrides = {
@ -17,7 +18,14 @@
'';
mainProgram = "nom";
};
nom-pkg = haskellPackages.callPackage ./generated-package.nix { };
nom-pkg-with-scope = nom-pkg.overrideScope (hfinal: hprev: {
hermes-json = hfinal.hermes-json_0_2_0_1;
});
in
justStaticExecutables
(overrideCabal overrides
(haskellPackages.callPackage ./generated-package.nix {}))
lib.pipe
nom-pkg-with-scope
[
(overrideCabal overrides)
justStaticExecutables
]