mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-11-23 17:20:31 +03:00
23 lines
439 B
Nix
23 lines
439 B
Nix
{
|
|
inputs = {
|
|
dream2nix.url = "github:nix-community/dream2nix";
|
|
src.url = "github:NorfairKing/cabal2json";
|
|
src.flake = false;
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
dream2nix,
|
|
src,
|
|
} @ inp:
|
|
(dream2nix.lib.makeFlakeOutputs {
|
|
pkgs = dream2nix.inputs.nixpkgs.legacyPackages.x86_64-linux;
|
|
source = src;
|
|
config.projectRoot = ./.;
|
|
settings = [];
|
|
})
|
|
// {
|
|
# checks = self.packages;
|
|
};
|
|
}
|