From a16b34202fef098b345e00ea907bb4234706c7f6 Mon Sep 17 00:00:00 2001 From: Quentin Boyer Date: Thu, 1 May 2025 18:54:18 +0200 Subject: [PATCH] pkgs: Drop flex --- pkgs/default.nix | 1 - pkgs/flex-launcher.nix | 42 ------------------------------------------ 2 files changed, 43 deletions(-) delete mode 100644 pkgs/flex-launcher.nix diff --git a/pkgs/default.nix b/pkgs/default.nix index 141a9ec..79fcef5 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -13,7 +13,6 @@ hbw = pkgs.callPackage ./hbw { }; warcraftlogs = pkgs.callPackage ./warcraftlogs.nix { }; frg = pkgs.callPackage ./frg.nix { }; - flex-launcher = pkgs.callPackage ./flex-launcher.nix { }; push-to-talk = pkgs.callPackage ./push-to-talk.nix { }; pulse8-cec = pkgs.callPackage ./pulse8-cec.nix { }; weakauras-companion = pkgs.callPackage ./weakauras-companion.nix { }; diff --git a/pkgs/flex-launcher.nix b/pkgs/flex-launcher.nix deleted file mode 100644 index 2fedf9d..0000000 --- a/pkgs/flex-launcher.nix +++ /dev/null @@ -1,42 +0,0 @@ -{ - lib, - stdenv, - fetchFromGitHub, - cmake, - pkg-config, - SDL2, - SDL2_image, - SDL2_ttf, -}: -stdenv.mkDerivation rec { - pname = "flex-launcher"; - version = "2.1"; - - src = fetchFromGitHub { - owner = "complexlogic"; - repo = "flex-launcher"; - rev = "v${version}"; - hash = "sha256-/W6q7wX7QZ1uz+eXef5ST61nt8Z8Ybc1Lg8iaJPXguQ="; - }; - - nativeBuildInputs = [ - cmake - pkg-config - ]; - - buildInputs = [ - SDL2_ttf - SDL2_image - SDL2 - ]; - - meta = with lib; { - description = "A customizable HTPC application launcher for Windows and Linux"; - homepage = "https://github.com/complexlogic/flex-launcher"; - changelog = "https://github.com/complexlogic/flex-launcher/blob/${src.rev}/CHANGELOG"; - license = licenses.unlicense; - maintainers = with maintainers; [ traxys ]; - mainProgram = "flex-launcher"; - platforms = platforms.all; - }; -}