Fixed the nix expression for building under NixOS

master
42triangles 2018-08-26 19:59:32 +02:00
parent 0fce00c021
commit 111c4db0bd
1 changed files with 2 additions and 2 deletions

View File

@ -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";
@ -9,4 +9,4 @@ pkgs.myEnvFun {
libsigcxx SDL2 SDL2_image freetype libvorbis libpng
assimp mesa
];
}
}