Merge pull request #171499 from cdepillabout/purescript-no-ncurses

main
Ben Siraphob 2 years ago committed by GitHub
commit 4ba3767e4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      pkgs/development/compilers/purescript/purescript/default.nix

@ -1,4 +1,4 @@
{ stdenv, pkgs, fetchurl, zlib, gmp, ncurses5, lib }:
{ stdenv, pkgs, fetchurl, zlib, gmp, lib }:
# from justinwoo/easy-purescript-nix
# https://github.com/justinwoo/easy-purescript-nix/blob/d383972c82620a712ead4033db14110497bc2c9c/purs.nix
@ -35,9 +35,7 @@ in stdenv.mkDerivation rec {
};
buildInputs = [ zlib
gmp
ncurses5 ];
buildInputs = [ zlib gmp ];
libPath = lib.makeLibraryPath buildInputs;
dontStrip = true;

Loading…
Cancel
Save