run-scaled: remove

This commit is contained in:
luftmensch-luftmensch
2025-03-17 14:25:33 +01:00
parent 096478927c
commit 800fced823
2 changed files with 1 additions and 45 deletions
-45
View File
@@ -1,45 +0,0 @@
{
lib,
stdenv,
fetchFromGitHub,
makeWrapper,
bc,
xorgserver,
xpra,
xrandr,
}:
stdenv.mkDerivation {
version = "unstable-2018-06-03";
pname = "run-scaled";
src = fetchFromGitHub {
owner = "kaueraal";
repo = "run_scaled";
rev = "fa71b3c17e627a96ff707ad69f1def5361f2245c";
sha256 = "1ma4ax7ydq4xvyzrc4zapihmf7v3d9zl9mbi8bgpps7nlgz544ys";
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out/bin
cp run_scaled $out/bin
wrapProgram $out/bin/run_scaled --prefix PATH ":" \
${lib.makeBinPath [
bc
xorgserver
xpra
xrandr
]}
'';
meta = with lib; {
description = "Run an X application scaled via xpra";
homepage = "https://github.com/kaueraal/run_scaled";
maintainers = [ maintainers.snaar ];
license = licenses.bsd3;
platforms = platforms.unix;
mainProgram = "run_scaled";
};
}
+1
View File
@@ -1348,6 +1348,7 @@ mapAliases {
rtx = mise; # Added 2024-01-05
runCommandNoCC = runCommand;
runCommandNoCCLocal = runCommandLocal;
run-scaled = throw "run-scaled has been removed due to being deprecated. Consider using run_scaled from 'xpra' instead"; # Added 2025-03-17
rust-synapse-state-compress = rust-synapse-compress-state;
rustc-wasm32 = rustc; # Added 2023-12-01
rustfilt = throw "'rustfilt' has been removed due to lack of upstream maintenance"; # Added 2025-01-26