Skip to content

Commit

Permalink
Ship
Browse files Browse the repository at this point in the history
  • Loading branch information
RubenAstudillo committed May 9, 2023
1 parent ed81b96 commit 881bb9c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
6 changes: 4 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@
});
in
{
overlay = (final: prev: {
overlay = (final: prev: rec {
rsi-break = final.haskellPackages.callPackage (import ./default.nix) {};
rsi-break-clean = with final.haskell.lib; dontCheck (justStaticExecutables rsi-break);
});
packages = forAllSystems (system: {
rsi-break = nixpkgsFor.${system}.rsi-break;
rsi-break-clean = nixpkgsFor.${system}.rsi-break-clean;
});
defaultPackage = forAllSystems (system: self.packages.${system}.rsi-break);
defaultPackage = forAllSystems (system: self.packages.${system}.rsi-break-clean);
checks = self.packages;
devShell = forAllSystems (system: let haskellPackages = nixpkgsFor.${system}.haskellPackages;
in haskellPackages.shellFor {
Expand Down
13 changes: 12 additions & 1 deletion rsi-break.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,18 @@ maintainer: [email protected]
category: Graphics
build-type: Simple
extra-doc-files: CHANGELOG.md
data-files: assets/**
data-files: assets/sound/bell.wav
assets/sound/bell.mp3
assets/images/red-button.png
assets/images/red-button-hover.png
assets/images/monomer-logo.svg
assets/images/icon.png
assets/fonts/Roboto-Italic.ttf
assets/fonts/Roboto-Bold.ttf
assets/fonts/remixicon.ttf
assets/fonts/Roboto-Regular.ttf
assets/fonts/Roboto-Medium.ttf

-- extra-source-files:

common warnings
Expand Down

0 comments on commit 881bb9c

Please sign in to comment.