Skip to content
Snippets Groups Projects
Select Git revision
  • 613f9cfb6ab88fb8986de882a2b53c4488616fec
  • master default protected
  • 1.31
  • 4.38.8
  • 4.38.7
  • 4.38.6
  • 4.38.5
  • 4.38.4
  • 4.38.3
  • 4.38.2
  • 4.38.1
  • 4.38.0
  • 4.37.2
  • 4.37.1
  • 4.37.0
  • 4.36.0
  • 4.35.0
  • 4.34.1
  • 4.34.0
  • 4.33.1
  • 4.33.0
  • 4.32.2
  • 4.32.1
23 results

pathfinder.mjs

Blame
  • monster.nix 423 B
    {
      pkgs',
      system,
      self,
      ...
    }: let
      buildDate = builtins.toString self.lastModified;
      releaseInfo = import ../config/release.nix;
    in
    derivation {
      name = "monster";
        version = releaseInfo.version;
        builder = "${pkgs'.bash}/bin/bash";
      args = let
        script = pkgs'.callPackage ../scripts/build.nix {inherit pkgs' system;};
      in ["${script}/bin/build"];
      buildInputs = with pkgs'; [];
      system = system;
    }