Skip to content

Commit

Permalink
Update flake.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
kings177 authored Mar 10, 2024
1 parent 1c00410 commit 789eb73
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@
shell = {commands = builtins.map (element: {package = common.pkgs.${element};}) ["ghc" "nodejs"];};
};
pkgConfig = common: let
override = {
buildInputs = pkgs common ["openssl" "pkg-config"];
meta = with common.pkgs.lib; {
description = "A massively parallel functional runtime.";
homepage = "https://github.com/HigherOrderCO/HVM";
license = licenses.mit;
};
};
buildInputs = common.libs.getLibs ["openssl" "pkg-config"];
in {
hvm = {
app = true;
build = true;
overrides = {inherit override;};
overrides = {
inherit override;
meta = with common.pkgs.lib; {
description = "A massively parallel functional runtime.";
homepage = "https://github.com/HigherOrderCO/HVM";
license = licenses.mit;
};
};
depsOverrides = {inherit override;};
profiles = {
dev = false;
Expand Down

0 comments on commit 789eb73

Please sign in to comment.