27 lines
638 B
Nix
27 lines
638 B
Nix
{
|
|
description = "Flake utils demo";
|
|
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let pkgs = nixpkgs.legacyPackages.${system}; in
|
|
{
|
|
packages = rec {
|
|
hello = pkgs.hello;
|
|
default = hello;
|
|
};
|
|
apps = rec {
|
|
hello = flake-utils.lib.mkApp { drv = self.packages.${system}.hello; };
|
|
default = hello;
|
|
};
|
|
devShell = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
cabal-install
|
|
ghc
|
|
];
|
|
};
|
|
}
|
|
);
|
|
}
|