Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ nixpkgs ? import ./nixpkgs.nix, enableOpencv4 ? false
{ nixpkgs ? import ./nixpkgs.nix
, system ? builtins.currentSystem
}:
import nixpkgs {
inherit system;
overlays = [ (import ./overlay.nix enableOpencv4) ];
overlays = [ (import ./overlay.nix) ];
}
4 changes: 2 additions & 2 deletions doc/ExampleExtractor.hs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import qualified "bytestring" Data.ByteString as B
import qualified "bytestring" Data.ByteString.Lazy as BL
import "template-haskell" Language.Haskell.TH
import "template-haskell" Language.Haskell.TH.Syntax
import "this" Language.Haskell.Meta.Syntax.Translate ( toDecs )
import "haskell-src-meta" Language.Haskell.Meta.Syntax.Translate ( toDecs )

#if !MIN_VERSION_base(4,11,0)
import "base" Data.Monoid
Expand Down Expand Up @@ -269,7 +269,7 @@ mkRenderExampleImages renderTargets = [d|
where
doRender :: Exp
doRender =
DoE $ do
DoE Nothing $ do
rt <- renderTargets
let sym = VarE $ rtSymbolName rt
fp = LitE $ StringL $ "examples/" <> rtDestination rt
Expand Down
Loading