elm.hs810Pkgs: remove with statements

This commit is contained in:
Philip Taron
2024-08-18 06:31:14 -07:00
parent 418495c4f9
commit bdc75c9235
@@ -1,8 +1,9 @@
{ pkgs, lib }:
self: pkgs.haskell.packages.ghc810.override {
overrides = self: super: with pkgs.haskell.lib.compose; with lib;
overrides = self: super:
let
inherit (pkgs.haskell.lib.compose) justStaticExecutables overrideCabal doJailbreak;
elmPkgs = rec {
elmi-to-json = justStaticExecutables (overrideCabal
(drv: {
@@ -22,8 +23,8 @@ self: pkgs.haskell.packages.ghc810.override {
description = "Tool that reads .elmi files (Elm interface file) generated by the elm compiler";
homepage = "https://github.com/stoeffel/elmi-to-json";
license = licenses.bsd3;
maintainers = [ maintainers.turbomack ];
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.turbomack ];
})
(self.callPackage ./elmi-to-json { }));
@@ -55,8 +56,8 @@ self: pkgs.haskell.packages.ghc810.override {
description = "Instrument Elm code as a preprocessing step for elm-coverage";
homepage = "https://github.com/zwilias/elm-instrument";
license = licenses.bsd3;
maintainers = [ maintainers.turbomack ];
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.turbomack ];
})
(self.callPackage ./elm-instrument { }));
};