Skip to content
This repository was archived by the owner on Jan 12, 2025. It is now read-only.

Commit 01611ff

Browse files
committed
Fix non-deterministic cabal breakage.
Bitten by haskell/cabal#9190
1 parent 4f11b5a commit 01611ff

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

monomer-flatpak-example.cabal

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cabal-version: 1.12
55
-- see: https://github.com/sol/hpack
66

77
name: monomer-flatpak-example
8-
version: 0.0.13.1
8+
version: 0.0.13.2
99
synopsis: Monomer Flatpak Example Application.
1010
description: An example of how to package Monomer apps with Flatpak.
1111
category: GUI, Flatpak
@@ -15,6 +15,8 @@ maintainer: [email protected]
1515
license: MIT
1616
license-file: LICENSE
1717
build-type: Simple
18+
extra-source-files:
19+
cbits/pipewire_hacks.h
1820
data-files:
1921
fonts/Cantarell/Cantarell-Bold.ttf
2022
fonts/Cantarell/Cantarell-Regular.ttf
@@ -57,7 +59,6 @@ executable monomer-flatpak-example
5759
include-dirs:
5860
cbits
5961
c-sources:
60-
cbits/pipewire_hacks.h
6162
cbits/pipewire_hacks.c
6263
pkgconfig-depends:
6364
libspa-0.2

package.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: monomer-flatpak-example
2-
version: 0.0.13.1
2+
version: 0.0.13.2
33
license: MIT
44
synopsis: Monomer Flatpak Example Application.
55
description: An example of how to package Monomer apps with Flatpak.
@@ -41,14 +41,16 @@ default-extensions:
4141
data-dir: assets
4242
data-files: '**/*'
4343

44+
extra-source-files:
45+
- cbits/pipewire_hacks.h
46+
4447
executables:
4548
monomer-flatpak-example:
4649
main: Main.hs
4750
source-dirs: app
4851
include-dirs:
4952
- cbits
5053
c-sources:
51-
- cbits/pipewire_hacks.h
5254
- cbits/pipewire_hacks.c
5355
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
5456
pkg-config-dependencies:

0 commit comments

Comments
 (0)