Skip to content

cardano-scaling/doom-wasm-flake

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

chocolate-doom flake

flake-parts module to create a chocolate-doom application.

You can enable this and set the options like so:

{
  inputs = {
    flake-parts.url = "github:hercules-ci/flake-parts";
    chocolate-doom = {
      flake = false;
      url = "github:chocolate-doom/chocolate-doom";
    };
    chocolate-doom-flake.url = "git+https://github.com/cardano-scaling/chocolate-doom-flake";
    nixpkgs.url = "github:NixOS/nixpkgs";
  };

  outputs = inputs.flake-parts.lib.mkFlake { inherit inputs; } {

    imports = [
      inputs.chocolate-doom-flake.flakeModule
    ];

    perSystem = { ... }: {
      doom.default = {
        enable = true;
        src = inputs.chocolate-doom;
        iwad = [
          "${inputs.self}/freedoom.wad"
        ];
      };
    };

}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages