no more nph for now

This commit is contained in:
Daylin Morgan 2024-10-08 11:02:07 -05:00
parent c5e4660d82
commit 8253720dc6
Signed by: daylin
GPG key ID: 950D13E9719334AD
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ in
])
++ (with (flake.pkgs "self"); [
nimlangserver
nph
# nph
nimble
]);
};

View file

@ -1,6 +1,6 @@
{ pkgs, ... }:
{
nph = pkgs.callPackage ./nim/nph { };
nph = pkgs.callPackage ./nim/nph { }; # doesn't compile with 2.2.0 :/
nimlangserver = pkgs.callPackage ./nim/nimlangserver { };
nimble = pkgs.callPackage ./nim/nimble { };
}