Merge pull request #328629 from fiq/matrixbrandy
matrix-brandy: init 1.23.2
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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 ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user