depot/pkgs/by-name/dj/djent/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

48 lines
1 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, mpfr
}:
stdenv.mkDerivation rec {
pname = "djent";
version = "1.0";
src = fetchFromGitHub {
owner = "dj-on-github";
repo = "djent";
rev = "${version}";
hash = "sha256-inMh7l/6LlrVnIin+L+fj+4Lchk0Xvt09ngVrCuvphE=";
};
buildInputs = [ mpfr ];
preBuild = ''
sed -i s/gcc/${stdenv.cc.targetPrefix}gcc/g Makefile
''
+ lib.optionalString (!stdenv.hostPlatform.isx86_64) ''
sed -i s/-m64//g Makefile
'';
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
installPhase = ''
runHook preInstall
install -D djent $out/bin/djent
runHook postInstall
'';
enableParallelBuilding = true;
meta = {
homepage = "http://www.deadhat.com/";
description = ''
A reimplementation of the Fourmilab/John Walker random number test program
ent with several improvements
'';
mainProgram = "djent";
license = lib.licenses.gpl2Only;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ orichter thillux ];
};
}