Skip to content

Commit

Permalink
qsp: init
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnMolotov committed Dec 18, 2024
1 parent 97a4c8a commit a302af8
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pkgs/by-name/qs/qsp/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
pkg-config,
oniguruma,
}:
stdenv.mkDerivation {
name = "qsp";
version = "0-unstable-2024-11-27";
src = fetchFromGitHub {
owner = "QSPFoundation";
repo = "qsp";
rev = "f6ede7f8756e49604de056fcbdfe99fa4abd4812";
sha256 = "MoNam2IFnLpk02tKp+lkl4l+mBiaWNPhFc3/n4zUHcw=";
};
buildInputs = [ oniguruma ];
nativeBuildInputs = [
cmake
pkg-config
];
cmakeFlags = [ (lib.cmakeBool "USE_INSTALLED_ONIGURUMA" true) ];
meta = {
description = "QuestSoft game engine";
homepage = "https://qsp.org/";
platforms = lib.platforms.unix;
license = lib.licenses.lgpl21Plus;
maintainers = [ lib.maintainers.JohnMolotov ];
};
}

0 comments on commit a302af8

Please sign in to comment.