3p: add cheddar
This commit is contained in:
parent
2306915e2c
commit
d604c261e0
1 changed files with 14 additions and 0 deletions
14
third_party/default.nix
vendored
14
third_party/default.nix
vendored
|
@ -23,6 +23,12 @@ let
|
||||||
rev = "e07af104b8e41d1cd7e41dc7ac3fdcdf4953efae";
|
rev = "e07af104b8e41d1cd7e41dc7ac3fdcdf4953efae";
|
||||||
hash = "sha256:07syygn1rc5n1big7hf42pzgm5wc1r0mzglzvlbcb7rkzgqqhbqx";
|
hash = "sha256:07syygn1rc5n1big7hf42pzgm5wc1r0mzglzvlbcb7rkzgqqhbqx";
|
||||||
};
|
};
|
||||||
|
naerskSrc = nixpkgs.fetchFromGitHub {
|
||||||
|
owner = "nmattia";
|
||||||
|
repo = "naersk";
|
||||||
|
rev = "e0fe990b478a66178a58c69cf53daec0478ca6f9";
|
||||||
|
sha256 = "sha256:0qjyfmw5v7s6ynjns4a61vlyj9cghj7vbpgrp9147ngb1f8krz2c";
|
||||||
|
};
|
||||||
in
|
in
|
||||||
rec {
|
rec {
|
||||||
inherit nixpkgsConfig nixpkgs;
|
inherit nixpkgsConfig nixpkgs;
|
||||||
|
@ -50,5 +56,13 @@ rec {
|
||||||
readTree = import ./tvl/nix/readTree {};
|
readTree = import ./tvl/nix/readTree {};
|
||||||
gopkgs = readTree ch ./gopkgs;
|
gopkgs = readTree ch ./gopkgs;
|
||||||
|
|
||||||
|
bat_syntaxes = import ./tvl/third_party/bat_syntaxes { pkgs = ch.depot.pkgs; };
|
||||||
|
cheddar = import ./tvl/tools/cheddar {
|
||||||
|
pkgs = ch.depot.pkgs // {
|
||||||
|
inherit naersk bat_syntaxes;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
naersk = nixpkgs.callPackage naerskSrc {};
|
||||||
|
|
||||||
crate2nix = import "${crate2nixSrc}" { pkgs = ch.depot.pkgs; };
|
crate2nix = import "${crate2nixSrc}" { pkgs = ch.depot.pkgs; };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue