Commit 54fbb395 authored by Kevin Puetz's avatar Kevin Puetz Committed by tomf
Browse files

keepassrpc: use dontUnpack instead of placeholder unpackCmd/sourceRoot

parent a8617e2b
Loading
Loading
Loading
Loading
+2 −9
Original line number Diff line number Diff line
@@ -18,17 +18,10 @@ let
      maintainers = with maintainers; [ mjanczyk svsdep mgregoire ];
    };

    pluginFilename = "KeePassRPC.plgx";

    unpackCmd = ''
      mkdir deps/
      cp -p $src deps/$pluginFilename
    '';
    sourceRoot = "deps";

    dontUnpack = true;
    installPhase = ''
      mkdir -p $out/lib/dotnet/keepass/
      cp $pluginFilename $out/lib/dotnet/keepass/$pluginFilename
      cp $src $out/lib/dotnet/keepass/
    '';
  };
in