monomer/flake.nix

42 lines
1.3 KiB
Nix
Raw Permalink Normal View History

{
description = "A GUI library for writing native Haskell applications.";
inputs = {
flake-utils.url = "github:numtide/flake-utils/master";
nixpkgs.url = "github:nixos/nixpkgs/haskell-updates";
};
outputs = { self, nixpkgs, flake-utils }:
with flake-utils.lib;
eachSystem [ "x86_64-linux" ] (system:
let
version = with nixpkgs.lib;
"${substring 0 8 self.lastModifiedDate}.${self.shortRev or "dirty"}";
overlays = [
(import ./nix/monomer.nix { inherit system version flake-utils; })
(import ./nix/qemu.nix {
inherit system version flake-utils nixpkgs;
})
];
in with (import nixpkgs { inherit system overlays; }); rec {
packages = flattenTree (recurseIntoAttrs {
inherit (libraries) monomer;
inherit (qemu) nixos;
});
apps = executables // {
nixos = mkApp {
drv = qemu.nixos;
name = "run-nixos-vm";
};
};
defaultPackage = packages.monomer;
defaultApp = apps.tutorial;
devShell = haskellPackages.shellFor {
packages = p: [ packages.monomer ];
withHoogle = true;
buildInputs = with haskellPackages; [
haskell-language-server
cabal-install
];
};
});
}