This commit is contained in:
mjallen18
2025-08-20 18:19:20 -05:00
parent b937a85dcc
commit 24c1580452
31 changed files with 351 additions and 463 deletions

View File

@@ -1,8 +1,8 @@
{ lib
, stdenv
, fetchurl
, vscode-utils
, pkgs
{
lib,
fetchurl,
vscode-utils,
pkgs,
}:
let
@@ -14,10 +14,9 @@ vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
inherit name publisher version;
};
vsix = fetchurl {
url = "https://open-vsx.org/api/${publisher}/${name}/${version}/file/${publisher}.${name}-${version}.vsix";
# Update this hash after downloading
sha256 = "sha256-QfJnAAx+kO2iJ1EzWoO5HLogJKg3RiC3hg1/u2Jm6t4=";
};
@@ -33,7 +32,7 @@ vscode-utils.buildVscodeMarketplaceExtension {
and take full advantage of VS Code's feature set. This is an open-source
alternative to Microsoft's proprietary Remote SSH extension, designed to
work with VSCodium and other open-source VS Code variants.
Note: This extension requires enabling proposed APIs in VSCodium/Code-OSS.
You need to add "jeanp413.open-remote-ssh" to the "enable-proposed-api"
array in ~/.vscode-oss/argv.json
@@ -41,7 +40,6 @@ vscode-utils.buildVscodeMarketplaceExtension {
homepage = "https://github.com/jeanp413/open-remote-ssh";
changelog = "https://github.com/jeanp413/open-remote-ssh/releases";
license = licenses.mit;
maintainers = with maintainers; [ /* add your name here if you maintain this */ ];
platforms = platforms.all;
};
}
}

View File

@@ -1,5 +1,5 @@
{ python3Packages, fetchFromGitHub, ... }:
python3Packages.buildPythonPackage rec {
python3Packages.buildPythonPackage {
pname = "pipewire-python";
version = "0.2.3";
format = "pyproject";
@@ -12,6 +12,10 @@ python3Packages.buildPythonPackage rec {
};
buildInputs = with python3Packages; [ flit-core ];
nativeBuildInputs = with python3Packages; [ build wheel ];
doCheck = false; # no tests in the PyPI tarball
nativeBuildInputs = with python3Packages; [
build
wheel
];
doCheck = false;
}

View File

@@ -11,7 +11,10 @@ python3Packages.buildPythonPackage rec {
sha256 = "sha256-rEmWsCIBGNmDEecVT8O9O5/E0WVpTfA7amFI70DEmiI=";
};
buildInputs = with python3Packages; [ poetry-core hatchling ];
buildInputs = with python3Packages; [
poetry-core
hatchling
];
nativeBuildInputs = with python3Packages; [
aiodns