Removed sgdboop

This commit is contained in:
William 2024-08-31 12:56:44 -03:00
parent 90f2688ec5
commit 512ef53757
3 changed files with 1 additions and 30 deletions

View file

@ -137,15 +137,13 @@
# }; # };
packages."x86_64-linux" = { packages."x86_64-linux" = {
sgdboop = nixpkgs.legacyPackages."x86_64-linux".callPackage
./packages/sgdboop.nix { };
chromeos-ectool = nixpkgs.legacyPackages."x86_64-linux".callPackage chromeos-ectool = nixpkgs.legacyPackages."x86_64-linux".callPackage
./packages/chromeos-ectool.nix { }; ./packages/chromeos-ectool.nix { };
}; };
overlays = { overlays = {
custom = final: prev: { custom = final: prev: {
inherit (self.packages."x86_64-linux") sgdboop chromeos-ectool; inherit (self.packages."x86_64-linux") chromeos-ectool;
}; };
}; };

View file

@ -50,7 +50,6 @@ in {
pulseaudio pulseaudio
qbittorrent qbittorrent
ripgrep ripgrep
sgdboop
solvespace solvespace
space-cadet-pinball space-cadet-pinball
sparrow sparrow

View file

@ -1,26 +0,0 @@
{ stdenv, fetchurl, autoPatchelfHook, openssl, curl, gtk3, gdk-pixbuf, pango
, cairo, glib }:
stdenv.mkDerivation rec {
pname = "sgdboop";
version = "1.2.8";
src = fetchurl {
url =
"https://github.com/SteamGridDB/SGDBoop/releases/download/v${version}/sgdboop-linux64.tar.gz";
sha256 = "sha256-LrP0qFg4kOhAicWtORfnW3TvIegvcJf/GiYTHcOeJK4=";
};
sourceRoot = ".";
nativeBuildInputs = [ autoPatchelfHook ];
buildInputs = [ openssl curl gtk3 gdk-pixbuf glib pango cairo ];
installPhase = ''
runHook preInstall
install -m755 -D SGDBoop $out/bin/SGDBoop
install -m444 -D libiup.so $out/lib/libiup.so
install -m444 -D com.steamgriddb.SGDBoop.desktop -t $out/share/applications/
runHook postInstall
'';
}