mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
20 lines
555 B
Nix
20 lines
555 B
Nix
{ stdenv, fetchFromGitHub, SDL }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.15.1";
|
|
name = "ja2-stracciatella-${version}";
|
|
src = fetchFromGitHub {
|
|
owner = "ja2-stracciatella";
|
|
repo = "ja2-stracciatella";
|
|
rev = "v${version}";
|
|
sha256 = "0r7j6k7412b3qfb1rnh80s55zhnriw0v03zn5bp3spcqjxh4xhv1";
|
|
};
|
|
enableParallelBuilding = true;
|
|
buildInputs = [ SDL ];
|
|
meta = {
|
|
description = "Jagged Alliance 2, with community fixes";
|
|
license = "SFI Source Code license agreement";
|
|
homepage = https://ja2-stracciatella.github.io/;
|
|
};
|
|
}
|