18 lines
414 B
Nix
18 lines
414 B
Nix
|
|
{ pkgs, lib }:
|
||
|
|
|
||
|
|
pkgs.symlinkJoin {
|
||
|
|
name = "tb-dev-scripts";
|
||
|
|
meta = {
|
||
|
|
description = "Custom development scripts for TB";
|
||
|
|
maintainers = [ ];
|
||
|
|
};
|
||
|
|
paths = [
|
||
|
|
(pkgs.writers.writePython3Bin ",cmake_update_fetchcontent" {
|
||
|
|
libraries = [ ];
|
||
|
|
makeWrapperArgs = [
|
||
|
|
"--prefix PATH : ${lib.makeBinPath [ pkgs.git ]}"
|
||
|
|
];
|
||
|
|
} (builtins.readFile ./cmake_update_fetchcontent.py))
|
||
|
|
];
|
||
|
|
}
|