flex-launcher: init at 2.2 (#371212)
This commit is contained in:
@@ -14243,6 +14243,12 @@
|
||||
githubId = 585424;
|
||||
name = "Massimo Gengarelli";
|
||||
};
|
||||
MasterEvarior = {
|
||||
email = "nix-maintainer@giannin.ch";
|
||||
github = "MasterEvarior";
|
||||
githubId = 36074738;
|
||||
name = "MasterEvarior";
|
||||
};
|
||||
matdibu = {
|
||||
email = "contact@mateidibu.dev";
|
||||
github = "matdibu";
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
{
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
SDL2,
|
||||
SDL2_ttf,
|
||||
SDL2_image,
|
||||
cmake,
|
||||
validatePkgConfig,
|
||||
inih,
|
||||
lib,
|
||||
gitUpdater,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "flex-launcher";
|
||||
version = "2.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "complexlogic";
|
||||
repo = "flex-launcher";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-touQMOKvp+D1vIYvyz/nU7aU9g6VXpDN3BPgoK/iYfw=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
validatePkgConfig
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
SDL2
|
||||
SDL2_ttf
|
||||
SDL2_image
|
||||
inih
|
||||
];
|
||||
|
||||
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
|
||||
|
||||
meta = {
|
||||
description = "Customizable HTPC application launcher";
|
||||
license = lib.licenses.unlicense;
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = with lib.maintainers; [ MasterEvarior ];
|
||||
homepage = "https://complexlogic.github.io/flex-launcher/";
|
||||
changelog = "https://github.com/complexlogic/flex-launcher/releases/tag/v${finalAttrs.version}";
|
||||
mainProgram = "flex-launcher";
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user