remove unused crystal custom package

This commit is contained in:
Joakim Repomaa
2026-03-14 21:31:50 +02:00
parent 80d347de3d
commit a1930c4365
2 changed files with 0 additions and 15 deletions

View File

@@ -1 +0,0 @@
{ util, ... }: util.package { }

View File

@@ -1,14 +0,0 @@
{ pkgs, ... }:
let
inherit (pkgs) crystal libffi;
in
crystal.overrideAttrs (oldAttrs: {
makeFlags = oldAttrs.makeFlags ++ [
"interpreter=1"
];
buildInputs = oldAttrs.buildInputs ++ [
libffi
];
FLAGS = [ "--single-module" ];
doCheck = false;
})