mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 17:23:08 +00:00
7d34b64eca
well, we failed. we have not saved nix together[0], and today's show of utter incompetence[1] has pushed me over the edge along with many others[2] it's been good. a lot of PRs. a lot of endless reviews. some new friends, some old friends converted :P cya in the next world, cuties <3 [0] https://save-nix-together.org/ [1] https://discourse.nixos.org/t/nca-member-jonringer-joint-announcement/48231 [2] https://github.com/NixOS/nixpkgs/issues?q=label%3A%228.has%3A+maintainer-list+%28update%29%22+remove+in%3Atitle+created%3A%3C2024-07-10
57 lines
1.0 KiB
Nix
57 lines
1.0 KiB
Nix
{ lib
|
|
, SDL2
|
|
, SDL2_image
|
|
, SDL2_ttf
|
|
, alsa-lib
|
|
, fetchFromGitHub
|
|
, glibmm
|
|
, gtk3
|
|
, libGL
|
|
, libGLU
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, python3
|
|
, sqlite
|
|
, stdenv
|
|
, wrapGAppsHook3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "linthesia";
|
|
version = "unstable-2023-05-23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linthesia";
|
|
repo = "linthesia";
|
|
rev = "1f2701241f8865c2f5c14a97b81ae64884cf0396";
|
|
sha256 = "sha256-3uPcpDUGtAGW9q/u8Cn+0bNqikII1Y/a0PKARW/5nao=";
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs meson_post_install.py
|
|
'';
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config python3 wrapGAppsHook3 ];
|
|
buildInputs = [
|
|
libGL
|
|
libGLU
|
|
alsa-lib
|
|
glibmm
|
|
sqlite
|
|
SDL2
|
|
SDL2_ttf
|
|
SDL2_image
|
|
gtk3.out # icon cache
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Game of playing music using a MIDI keyboard following a MIDI file";
|
|
mainProgram = "linthesia";
|
|
inherit (src.meta) homepage;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|