mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-05-22 14:43:55 +00:00
modules/default.nix: make patches work on built plugins
This commit is contained in:
parent
9c93e9a9c0
commit
977939a167
2 changed files with 13 additions and 7 deletions
|
|
@ -36,11 +36,19 @@ inputs: {
|
|||
buildPlug = {pname, ...} @ attrs: let
|
||||
src = getAttr ("plugin-" + pname) inputs;
|
||||
in
|
||||
pkgs.runCommand "${pname}-${src.shortRev or src.shortDirtyRev or "dirty"}" attrs
|
||||
''
|
||||
mkdir -p $out
|
||||
cp -r ${src}/. $out
|
||||
'';
|
||||
pkgs.stdenvNoCC.mkDerivation ({
|
||||
inherit src;
|
||||
version = src.shortRev or src.shortDirtyRev or "dirty";
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out
|
||||
cp -r . $out
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
}
|
||||
// attrs);
|
||||
|
||||
noBuildPlug = {pname, ...} @ attrs: let
|
||||
input = getAttr ("plugin-" + pname) inputs;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue