mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
librem: Fix build
This commit is contained in:
parent
10b45d654a
commit
9acfe0cfb0
@ -12,15 +12,14 @@ stdenv.mkDerivation rec {
|
||||
"LIBRE_INC=${libre}/include/re"
|
||||
''PREFIX=$(out)''
|
||||
]
|
||||
++ stdenv.lib.optional (stdenv.cc.cc != null) "SYSROOT_ALT=${stdenv.cc.cc}"
|
||||
++ stdenv.lib.optional (stdenv.cc.libc != null) "SYSROOT=${stdenv.cc.libc}"
|
||||
++ stdenv.lib.optional (stdenv.cc.cc != null) "SYSROOT_ALT=${stdenv.lib.getDev stdenv.cc.cc}"
|
||||
++ stdenv.lib.optional (stdenv.cc.libc != null) "SYSROOT=${stdenv.lib.getDev stdenv.cc.libc}"
|
||||
;
|
||||
meta = {
|
||||
homepage = "http://www.creytiv.com/rem.html";
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
maintainers = with stdenv.lib.maintainers; [raskin];
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
inherit version;
|
||||
downloadPage = "http://www.creytiv.com/pub/";
|
||||
updateWalker = true;
|
||||
downloadURLRegexp = "/rem-.*[.]tar[.].*";
|
||||
|
Loading…
Reference in New Issue
Block a user