Skip to content

Commit

Permalink
Fixed the nix expression for building under NixOS
Browse files Browse the repository at this point in the history
  • Loading branch information
42triangles committed Aug 26, 2018
1 parent 0fce00c commit 111c4db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nix/env.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ pkgs ? import <nixpkgs> { } }:
let
assimp = pkgs.assimp or pkgs.callPackage ./assimp.nix { };
assimp = pkgs.assimp or (pkgs.callPackage ./assimp.nix { });
in
pkgs.myEnvFun {
name = "pioneer";
Expand All @@ -9,4 +9,4 @@ pkgs.myEnvFun {
libsigcxx SDL2 SDL2_image freetype libvorbis libpng
assimp mesa
];
}
}

0 comments on commit 111c4db

Please sign in to comment.