diff options
Diffstat (limited to 'pkgs/development/interpreters/cyclone/default.nix')
-rw-r--r-- | pkgs/development/interpreters/cyclone/default.nix | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/pkgs/development/interpreters/cyclone/default.nix b/pkgs/development/interpreters/cyclone/default.nix deleted file mode 100644 index 643ee3a63216..000000000000 --- a/pkgs/development/interpreters/cyclone/default.nix +++ /dev/null @@ -1,51 +0,0 @@ -{ lib, stdenv, fetchFromGitHub, libck, cctools }: - -let - version = "0.34.0"; - bootstrap = stdenv.mkDerivation { - pname = "cyclone-bootstrap"; - inherit version; - - src = fetchFromGitHub { - owner = "justinethier"; - repo = "cyclone-bootstrap"; - rev = "v${version}"; - sha256 = "sha256-kJBPb0Ej32HveY/vdGpH2gyxSwq8Xq7muneFIw3Y7hM="; - }; - - enableParallelBuilding = true; - - nativeBuildInputs = lib.optionals stdenv.isDarwin [ cctools ]; - - buildInputs = [ libck ]; - - makeFlags = [ "PREFIX=${placeholder "out"}" ]; - }; -in -stdenv.mkDerivation { - pname = "cyclone"; - inherit version; - - src = fetchFromGitHub { - owner = "justinethier"; - repo = "cyclone"; - rev = "v${version}"; - sha256 = "sha256-4U/uOTbFpPTC9BmO6Wkhy4PY8UCFVt5eHSGqrOlKT/U="; - }; - - enableParallelBuilding = true; - - nativeBuildInputs = [ bootstrap ] - ++ lib.optionals stdenv.isDarwin [ cctools ]; - - buildInputs = [ libck ]; - - makeFlags = [ "PREFIX=${placeholder "out"}" ]; - - meta = with lib; { - homepage = "https://justinethier.github.io/cyclone/"; - description = "Brand-new compiler that allows practical application development using R7RS Scheme"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; - }; -} |