Skip to content

Commit

Permalink
unpin base
Browse files Browse the repository at this point in the history
Signed-off-by: Maximilian Huber <gh@maxhbr.de>
  • Loading branch information
maxhbr committed Mar 20, 2024
1 parent b222f5b commit 66ef511
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
--set PATH ${pkgs.lib.makeBinPath extraLibraries}
'';
};
default = self.packages.${system}.myphoto;
};

apps.${system} = {
Expand Down
8 changes: 4 additions & 4 deletions myphoto.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ library
MyPhoto.Monad

other-extensions: OverloadedStrings
build-depends: base ^>=4.17.2.1,
build-depends: base,
SafeSemaphore,
aeson,
async,
Expand Down Expand Up @@ -77,7 +77,7 @@ executable myphoto-stack
import: warnings
main-is: Main.hs
ghc-options: -Wall -threaded -rtsopts
build-depends: base ^>=4.17.2.1,
build-depends: base,
myphoto
hs-source-dirs: app-stack
default-language: Haskell2010
Expand All @@ -86,7 +86,7 @@ executable myphoto-watch
import: warnings
main-is: Main.hs
ghc-options: -Wall -threaded -rtsopts
build-depends: base ^>=4.17.2.1,
build-depends: base,
myphoto
hs-source-dirs: app-watch
default-language: Haskell2010
Expand All @@ -95,7 +95,7 @@ test-suite test-myphoto
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
build-depends: base ^>=4.17.2.1,
build-depends: base,
myphoto,
test-framework,
test-framework-hunit,
Expand Down

0 comments on commit 66ef511

Please sign in to comment.