forked from glasserc/haskell-cached-io
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use bellroy-nix-foss * flake.lock: Update Flake lock file updates: • Added input 'bellroy-nix-foss': 'github:bellroy/bellroy-nix-foss/b6c032e0c9aeb1886538d9db10809bc441dd2bac?narHash=sha256-7pEJ5a%2BhbpeCmKqRt%2BN5ddhsBD8IwDRenMN8WPnB8MQ%3D' (2024-06-25) • Added input 'bellroy-nix-foss/flake-compat': 'github:edolstra/flake-compat/0f9255e01c2351cc7d116c072cb317785dd33b33?narHash=sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U%3D' (2023-10-04) • Added input 'bellroy-nix-foss/flake-utils': 'github:numtide/flake-utils/b1d9ab70662946ef0850d488da1c9019f3a9752a?narHash=sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ%3D' (2024-03-11) • Added input 'bellroy-nix-foss/flake-utils/systems': 'github:nix-systems/default/da67096a3b9bf56a91d16901293e51ba5b49a27e?narHash=sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768%3D' (2023-04-09) • Added input 'bellroy-nix-foss/nixpkgs': 'github:NixOS/nixpkgs/9693852a2070b398ee123a329e68f0dab5526681?narHash=sha256-jHJSUH619zBQ6WdC21fFAlDxHErKVDJ5fpN0Hgx4sjs%3D' (2024-06-22) • Removed input 'flake-utils' • Removed input 'flake-utils/systems' • Removed input 'nixpkgs' * Update cabal bounds * Update tested-with and regenerate CI
- Loading branch information
1 parent
5dc681c
commit 84d3c3e
Showing
5 changed files
with
95 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ author: SumAll, Inc. | |
maintainer: Bellroy Tech Team <[email protected]> | ||
category: Development | ||
build-type: Simple | ||
tested-with: GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.5 || ==9.6.2 || ==9.8.1 | ||
tested-with: GHC ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.5 || ==9.6.4 || ==9.8.2 | ||
extra-doc-files: | ||
CHANGELOG.md | ||
README.md | ||
|
@@ -22,7 +22,7 @@ source-repository head | |
location: https://github.com/bellroy/haskell-cached-io.git | ||
|
||
common deps | ||
build-depends: base >=4.13.0.0 && <4.20 | ||
build-depends: base >=4.13.0.0 && <4.21 | ||
|
||
library | ||
import: deps | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,13 @@ | ||
{ mkDerivation | ||
, lib | ||
, base | ||
, exceptions | ||
, stm | ||
, time | ||
, transformers | ||
}: | ||
{ mkDerivation, base, exceptions, lib, stm, time, transformers }: | ||
mkDerivation { | ||
pname = "cached-io"; | ||
version = "1.1.0.0"; | ||
version = "1.3.0.0"; | ||
src = ./.; | ||
libraryHaskellDepends = [ | ||
base | ||
exceptions | ||
stm | ||
time | ||
transformers | ||
]; | ||
description = "A simple library to cache a single IO action with timeout"; | ||
isLibrary = true; | ||
isExecutable = true; | ||
libraryHaskellDepends = [ base exceptions stm time transformers ]; | ||
executableHaskellDepends = [ base ]; | ||
description = "A simple library to cache IO actions"; | ||
license = lib.licenses.asl20; | ||
mainProgram = "test-cachedIO"; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters