fix(gemma): Almost fix Gemma build by porting an old Elm
This pulls in an old version of Elm from NixOS 17.09 which can still build the Elm code in Gemma. However, the Common Lisp build is now broken in some other way.
This commit is contained in:
parent
31e83b33cc
commit
d3f8dd15f3
2 changed files with 15 additions and 8 deletions
|
@ -1,15 +1,9 @@
|
|||
with import <nixpkgs> {};
|
||||
{ stdenv, sbcl, lispPackages, elmPackages, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gemma";
|
||||
|
||||
src = ./.;
|
||||
|
||||
# For the time being, Gemma can not be built because it requires an
|
||||
# older version of Elm than what is available and Elm upgrade paths
|
||||
# are painful.
|
||||
broken = true;
|
||||
|
||||
buildInputs = with lispPackages; [
|
||||
sbcl
|
||||
quicklisp
|
||||
|
@ -50,5 +44,9 @@ stdenv.mkDerivation rec {
|
|||
description = "Tool for tracking recurring tasks";
|
||||
homepage = "https://github.com/tazjin/gemma";
|
||||
license = licenses.gpl3;
|
||||
|
||||
# For the time being, Gemma can not be built because the Lisp build process
|
||||
# broke in some way I haven't had time to debug.
|
||||
broken = true;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue