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:
commit
6cd0ba0fb0
|
@ -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";
|
||||
|
|
36
pkgs/by-name/ma/matrix-brandy/package.nix
Normal file
36
pkgs/by-name/ma/matrix-brandy/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in a new issue