haga/flake.nix
2023-04-26 15:40:05 +02:00

25 lines
570 B
Nix

{
description = "Flake for haga";
inputs = {
nixpkgs.url =
# 2022-06-22
"github:NixOS/nixpkgs/0d68d7c857fe301d49cdcd56130e0beea4ecd5aa";
};
outputs = inputs@{ self, nixpkgs }:
with import nixpkgs {
system = "x86_64-linux";
}; {
# defaultPackage.${system} = haskellPackages.callPackage ./default.nix { };
devShell.${system} = mkShell {
buildInputs = [
feedgnuplot
haskellPackages.cabal-install
haskellPackages.ormolu
haskell.compiler.ghc8107
];
};
};
}