Pinned nix channel, made makefile not error

This commit is contained in:
Rakarake 2023-02-14 15:47:36 +01:00
parent 9f4c3a3cbf
commit 514c809b1e
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
.PHONY : sdist clean
language : src/Grammar/Test
cabal install --installdir=.
cabal install --installdir=. --overwrite-policy=always
src/Grammar/Test.hs src/Grammar/Lex.x src/Grammar/Par.y : Grammar.cf
bnfc -o src -d $<

View file

@ -1,5 +1,5 @@
let
pkgs = import <nixpkgs> { }; # pin the channel to ensure reproducibility!
pkgs = import (fetchTarball https://github.com/NixOS/nixpkgs/archive/8c619a1f3cedd16ea172146e30645e703d21bfc1.tar.gz) { }; # pin the channel to ensure reproducibility!
in
pkgs.haskellPackages.developPackage {
root = ./.;