Skip to content

Commit

Permalink
remove with
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Nov 4, 2020
1 parent 486e569 commit 8620958
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions default.nix
@@ -1,14 +1,14 @@
{ ... }:
let
sources = import nix/sources.nix;
nixpkgs = import sources.nixpkgs { };
pkgs = import sources.nixpkgs { };
gitignore = import sources.gitignore { };
in with nixpkgs; {
elo-anything = stdenv.mkDerivation {
in {
elo-anything = pkgs.stdenv.mkDerivation {
name = "elo-anything";
src = gitignore.gitignoreSource ./.;

buildInputs = [ elmPackages.elm elmPackages.elm-test ];
buildInputs = [ pkgs.elmPackages.elm pkgs.elmPackages.elm-test ];
buildPhase = pkgs.elmPackages.fetchElmDeps {
elmPackages = import ./nix/elm-srcs.nix;
elmVersion = "0.19.1";
Expand Down

0 comments on commit 8620958

Please sign in to comment.