fix typo and pin nixpkgs in shell.nix too

This commit is contained in:
Ben Sima 2020-11-13 15:45:49 -05:00
parent 3903574c4b
commit 085dd01c98
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ nixpkgs ? import (builtins.fetchtarball (import ./nixpkgs.nix)) {}
{ nixpkgs ? import (builtins.fetchTarball (import ./nixpkgs.nix)) {}
, compiler ? "ghc884"
}:
nixpkgs.pkgs.haskell.packages.${compiler}.callPackage ./urbit-airlock.nix { }

View File

@ -1,4 +1,6 @@
{ nixpkgs ? import <nixpkgs> {}, compiler ? "ghc884" }:
{ nixpkgs ? import (builtins.fetchTarball (import ./nixpkgs.nix)) {}
, compiler ? "ghc884"
}:
nixpkgs.mkShell {
name = "urbit-airlock-shell";