haga/flake.nix

26 lines
535 B
Nix
Raw Normal View History

{
description = "Flake for haga";
inputs = {
nixpkgs.url =
2024-04-21 13:22:14 +02:00
"github:NixOS/nixpkgs/53a2c32bc66f5ae41a28d7a9a49d321172af621e";
};
outputs = inputs@{ self, nixpkgs }:
with import nixpkgs {
system = "x86_64-linux";
}; {
# defaultPackage.${system} = haskellPackages.callPackage ./default.nix { };
devShell.${system} = mkShell {
buildInputs = [
2024-04-21 13:22:14 +02:00
haskell.compiler.ghc981
git
gcc
gmp
feedgnuplot
2024-04-21 13:22:14 +02:00
stack
];
};
};
}