Files
p2p-rendering-computation/Bindings/Haskell/flake.nix
2025-01-11 00:56:07 +00:00

23 lines
425 B
Nix

{
description = "A very basic flake";
inputs = {
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }: utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
cabal-install
haskell.compiler.ghc96
zlib.dev
];
};
}
);
}