kino/shell.nix

7 lines
126 B
Nix
Raw Permalink Normal View History

2023-07-25 11:55:04 +02:00
let pkgs = import <nixpkgs> {};
in with pkgs; mkShell {
packages = [
(haskellPackages.callPackage ./kino.nix {})
];
}