1
0
mirror of https://github.com/TREX-CoE/trexio.git synced 2025-01-03 10:06:01 +01:00
trexio/tools/nix/overlay.nix
Phillip Seeber df0e3a8e1c
add nix build instructions and README section (#173)
# Conflicts:
#	README.md
2024-12-11 16:15:12 +01:00

12 lines
249 B
Nix

final: prev: {
trexio = final.callPackage ./trexio.nix { };
haskell = prev.haskell // {
packageOverrides = hfinal: hprev: {
trexio-hs = hfinal.callCabal2nix "trexio" ../haskell {
inherit (final) trexio;
};
};
};
}