1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

Merge pull request #328629 from fiq/matrixbrandy

matrix-brandy: init 1.23.2
This commit is contained in:
Sandro 2024-07-21 21:25:15 +02:00 committed by GitHub
commit 6cd0ba0fb0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 42 additions and 0 deletions

View file

@ -6634,6 +6634,12 @@
githubId = 5741401;
name = "Tim Windelschmidt";
};
fiq = {
email = "raf+git@dreamthought.com";
github = "fiq";
githubId = 236293;
name = "Raf Gemmail";
};
firefly-cpp = {
email = "iztok@iztok-jr-fister.eu";
github = "firefly-cpp";

View file

@ -0,0 +1,36 @@
{ lib
, stdenv
, fetchFromGitHub
, SDL
}:
stdenv.mkDerivation rec {
pname = "matrix-brandy";
version = "1.23.2";
src = fetchFromGitHub {
owner = "stardot";
repo = "MatrixBrandy";
rev = "V${version}";
hash = "sha256-alyg4AQ1nSISk3NwniTurRVWeUp1q/SQjK2loek8bfI=";
};
buildInputs = [
SDL
];
installPhase = ''
mkdir -p $out/bin
cp brandy $out/bin
'';
meta = with lib; {
homepage = "http://brandy.matrixnetwork.co.uk/";
description = "Matrix Brandy BASIC VI for Linux, Windows, MacOSX";
mainProgram = "brandy";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ fiq ];
};
}