mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
28 lines
644 B
Nix
28 lines
644 B
Nix
{ stdenv, fetchFromGitLab, cmake, qtbase }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "enyo-doom";
|
|
version = "1.06.9";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "sdcofer70";
|
|
repo = "enyo-doom";
|
|
rev = version;
|
|
sha256 = "0vx5zy47cqrqdgyx31wg56ivva0qqiyww8bp1x32ax99danymjyf";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = "https://gitlab.com/sdcofer70/enyo-doom";
|
|
description = "Frontend for Doom engines";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.tadfisher ];
|
|
};
|
|
}
|