forked from mirrors/nixpkgs
nix-output-monitor: use hermes-json-0.2.0.1
This commit is contained in:
parent
e2f247c39e
commit
3009eda91b
|
@ -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
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue