We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3a34e4 commit 661a079Copy full SHA for 661a079
2 files changed
.github/workflows/updatecache.yml
@@ -20,6 +20,7 @@ jobs:
20
with:
21
name: jhgarner-projects
22
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
23
- - run: nix-build --argstr system ${{ matrix.system }}
+ - run: nix-build --argstr system ${{ matrix.system }} -o result
24
env:
25
NIXPKGS_ALLOW_BROKEN: 1
26
+ - run: cachix push jhgarner-projects result
app.nix
@@ -7,7 +7,7 @@
7
mkDerivation {
8
pname = "DailyReporter";
9
version = "0.1.0.0";
10
- src = ./.;
+ src = lib.cleanSource ./.;
11
isLibrary = true;
12
isExecutable = true;
13
libraryHaskellDepends = [
0 commit comments