diff options
author | Justin Bedo <cu@cua0.org> | 2025-04-28 15:05:21 +1000 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2025-04-28 15:05:21 +1000 |
commit | 41e567d5e2e105ba391536f46571995b4cfa009f (patch) | |
tree | 0f1540c43e5bd4299637adc5ad48522e41fb26af | |
parent | 4f7a612e15de9e35916fe2e7d395cedb378cafb6 (diff) |
-rw-r--r-- | flake.nix | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3,7 +3,7 @@ extra-trusted-public-keys = ["hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ="]; extra-substituters = ["https://cache.iog.io"]; }; - description = "Bayesian phylogentic playground"; + description = "Probabilistic Programming Language"; inputs.haskellNix.url = "github:input-output-hk/haskell.nix"; inputs.nixpkgs.follows = "haskellNix/nixpkgs-unstable"; inputs.flake-utils.url = "github:numtide/flake-utils"; @@ -17,7 +17,7 @@ overlays = [ haskellNix.overlay (final: prev: { - phylogenies = final.haskell-nix.project' { + ppl = final.haskell-nix.project' { src = ./.; compiler-nix-name = "ghc925"; shell.tools = { @@ -33,7 +33,7 @@ inherit system overlays; inherit (haskellNix) config; }; - flake = pkgs.phylogenies.flake {}; + flake = pkgs.ppl.flake {}; in flake // { packages.default = flake.packages."ppl:lib:ppl";}); } |