-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #290 from expipiplus1/warnings
Squash warning in utils
- Loading branch information
Showing
6 changed files
with
86 additions
and
73 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
let | ||
nixpkgsSrc = builtins.fetchTarball { | ||
url = | ||
"https://github.com/nixos/nixpkgs/archive/1c2986bbb806c57f9470bf3231d8da7250ab9091.tar.gz"; # refs/heads/nixos-unstable | ||
sha256 = "0y1275nzlmsys5rk7ivzbdc8cpjs9cbk0wz6yh3i2c57b8nbd3ym"; | ||
"https://github.com/nixos/nixpkgs/archive/fbfb79400a08bf754e32b4d4fc3f7d8f8055cf94.tar.gz"; # refs/heads/nixos-unstable | ||
sha256 = "0pgyx1l1gj33g5i9kwjar7dc3sal2g14mhfljcajj8bqzzrbc3za"; | ||
}; | ||
|
||
in import nixpkgsSrc { } |
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
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,92 +1,99 @@ | ||
name: vulkan-utils | ||
version: "0.5.0" | ||
version: 0.5.0.1 | ||
synopsis: Utils for the vulkan package | ||
category: Graphics | ||
maintainer: Joe Hermaszewski <[email protected]> | ||
github: expipiplus1/vulkan | ||
extra-source-files: | ||
- readme.md | ||
- changelog.md | ||
- package.yaml | ||
- src/Vulkan/Utils/gl_enums.h | ||
- readme.md | ||
- changelog.md | ||
- package.yaml | ||
- src/Vulkan/Utils/gl_enums.h | ||
|
||
library: | ||
source-dirs: src | ||
c-sources: cbits/DebugCallback.c | ||
other-modules: | ||
- Vulkan.Utils.Internal | ||
- Vulkan.Utils.Internal | ||
- Vulkan.Utils.ShaderQQ.ShaderType | ||
- Vulkan.Utils.ShaderQQ.Backend.Internal | ||
- Vulkan.Utils.ShaderQQ.Backend.Glslang.Internal | ||
- Vulkan.Utils.ShaderQQ.Backend.Shaderc.Internal | ||
- Vulkan.Utils.ShaderQQ.GLSL | ||
- Vulkan.Utils.ShaderQQ.HLSL | ||
|
||
dependencies: | ||
- base <5 | ||
- bytestring | ||
- containers | ||
- dependent-map | ||
- dependent-sum | ||
- extra | ||
- file-embed | ||
- filepath | ||
- resourcet >= 1.2.4 | ||
- template-haskell | ||
- temporary | ||
- text | ||
- transformers | ||
- typed-process | ||
- unordered-containers | ||
- vector | ||
- vulkan >= 3.6.14 && < 3.11 | ||
- base <5 | ||
- bytestring | ||
- containers | ||
- dependent-map | ||
- dependent-sum | ||
- extra | ||
- file-embed | ||
- filepath | ||
- resourcet >= 1.2.4 | ||
- template-haskell | ||
- temporary | ||
- text | ||
- transformers | ||
- typed-process | ||
- unordered-containers | ||
- vector | ||
- vulkan >= 3.6.14 && < 3.11 | ||
|
||
tests: | ||
doctests: | ||
main: Doctests.hs | ||
other-modules: "" | ||
other-modules: '' | ||
source-dirs: | ||
- test/doctest | ||
- test/doctest | ||
dependencies: | ||
- base | ||
- doctest | ||
- vulkan-utils | ||
- base | ||
- doctest | ||
- vulkan-utils | ||
|
||
custom-setup: | ||
dependencies: | ||
- base | ||
- Cabal | ||
- cabal-doctest >= 1 && <1.1 | ||
- base | ||
- Cabal | ||
- cabal-doctest >= 1 && <1.1 | ||
|
||
ghc-options: | ||
- -Wall | ||
- -Wall | ||
|
||
default-extensions: | ||
- ConstraintKinds | ||
- DataKinds | ||
- DefaultSignatures | ||
- DeriveAnyClass | ||
- DeriveFoldable | ||
- DeriveFunctor | ||
- DeriveTraversable | ||
- DerivingStrategies | ||
- DuplicateRecordFields | ||
- FlexibleContexts | ||
- FlexibleInstances | ||
- GADTs | ||
- GeneralizedNewtypeDeriving | ||
- InstanceSigs | ||
- LambdaCase | ||
- MagicHash | ||
- NamedFieldPuns | ||
- NoMonomorphismRestriction | ||
- OverloadedStrings | ||
- PartialTypeSignatures | ||
- PatternSynonyms | ||
- PolyKinds | ||
- QuantifiedConstraints | ||
- RankNTypes | ||
- RecordWildCards | ||
- RoleAnnotations | ||
- ScopedTypeVariables | ||
- StandaloneDeriving | ||
- Strict | ||
- TupleSections | ||
- TypeApplications | ||
- TypeFamilyDependencies | ||
- TypeOperators | ||
- TypeSynonymInstances | ||
- ViewPatterns | ||
- ConstraintKinds | ||
- DataKinds | ||
- DefaultSignatures | ||
- DeriveAnyClass | ||
- DeriveFoldable | ||
- DeriveFunctor | ||
- DeriveTraversable | ||
- DerivingStrategies | ||
- DuplicateRecordFields | ||
- FlexibleContexts | ||
- FlexibleInstances | ||
- GADTs | ||
- GeneralizedNewtypeDeriving | ||
- InstanceSigs | ||
- LambdaCase | ||
- MagicHash | ||
- NamedFieldPuns | ||
- NoMonomorphismRestriction | ||
- OverloadedStrings | ||
- PartialTypeSignatures | ||
- PatternSynonyms | ||
- PolyKinds | ||
- QuantifiedConstraints | ||
- RankNTypes | ||
- RecordWildCards | ||
- RoleAnnotations | ||
- ScopedTypeVariables | ||
- StandaloneDeriving | ||
- Strict | ||
- TupleSections | ||
- TypeApplications | ||
- TypeFamilyDependencies | ||
- TypeOperators | ||
- TypeSynonymInstances | ||
- ViewPatterns |
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