mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
Merge pull request #90326 from terlar/fix-tsun
nodePackages.tsun: add typescript dependency
This commit is contained in:
commit
15c8e915f5
@ -150,6 +150,14 @@ let
|
||||
'';
|
||||
};
|
||||
|
||||
tsun = super.tsun.overrideAttrs (oldAttrs: {
|
||||
buildInputs = oldAttrs.buildInputs ++ [ pkgs.makeWrapper ];
|
||||
postInstall = ''
|
||||
wrapProgram "$out/bin/tsun" \
|
||||
--prefix NODE_PATH : ${self.typescript}/lib/node_modules
|
||||
'';
|
||||
});
|
||||
|
||||
stf = super.stf.override {
|
||||
meta.broken = since "10";
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user