packages feed

vulkan-utils 0.1.2 → 0.1.2.1

raw patch · 4 files changed

+69/−3 lines, 4 filesdep ~basesetup-changed

Dependency ranges changed: base

Files

+ Setup.hs view
@@ -0,0 +1,2 @@+import Distribution.Simple+main = defaultMain
changelog.md view
@@ -2,6 +2,10 @@  ## WIP +## [0.1.2.1] - 2020-11-01++- Raise bound on base+ ## [0.1.2] - 2020-09-27   - Initial release     - Shader QuasiQuoters
+ package.yaml view
@@ -0,0 +1,59 @@+name: vulkan-utils+version: "0.1.2.1"+synopsis: Utils for the vulkan package+category: Graphics+maintainer: Joe Hermaszewski <live.long.and.prosper@monoid.al>+github: expipiplus1/vulkan+extra-source-files:+  - readme.md+  - changelog.md+  - package.yaml+  - src/Vulkan/Utils/gl_enums.h++library:+  source-dirs: src+  c-sources: cbits/DebugCallback.c+  dependencies:+    - base <5+    - bytestring+    - extra+    - file-embed+    - filepath+    - template-haskell+    - temporary+    - typed-process+    - vulkan++default-extensions:+  - AllowAmbiguousTypes+  - CPP+  - DataKinds+  - DefaultSignatures+  - DeriveAnyClass+  - DerivingStrategies+  - DuplicateRecordFields+  - FlexibleContexts+  - FlexibleInstances+  - GADTs+  - GeneralizedNewtypeDeriving+  - InstanceSigs+  - LambdaCase+  - MagicHash+  - NoMonomorphismRestriction+  - OverloadedStrings+  - PartialTypeSignatures+  - PatternSynonyms+  - PolyKinds+  - QuantifiedConstraints+  - RankNTypes+  - RecordWildCards+  - RoleAnnotations+  - ScopedTypeVariables+  - StandaloneDeriving+  - Strict+  - TypeApplications+  - TypeFamilyDependencies+  - TypeOperators+  - TypeSynonymInstances+  - UndecidableInstances+  - ViewPatterns
vulkan-utils.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 25880478bf00adf1eff57812a7ac503083c38df26cb9334d47f921f42a5d8e18+-- hash: 02cd419c730d93f7db6f291f1fac9c67d943c8c7a6d2be902231c4c693a58d51  name:           vulkan-utils-version:        0.1.2+version:        0.1.2.1 synopsis:       Utils for the vulkan package category:       Graphics homepage:       https://github.com/expipiplus1/vulkan#readme@@ -19,6 +19,7 @@ extra-source-files:     readme.md     changelog.md+    package.yaml     src/Vulkan/Utils/gl_enums.h  source-repository head@@ -38,7 +39,7 @@   c-sources:       cbits/DebugCallback.c   build-depends:-      base <4.15+      base <5     , bytestring     , extra     , file-embed