nixpkgs/pkgs/development/libraries/pcg-c/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* 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
2017-08-01 22:03:30 +02:00

40 lines
1 KiB
Nix

{ stdenv, fetchzip }:
with stdenv.lib;
stdenv.mkDerivation rec {
version = "0.94";
name = "pcg-c-${version}";
src = fetchzip {
url = "http://www.pcg-random.org/downloads/${name}.zip";
sha256 = "0smm811xbvs03a5nc2668zd0178wnyri2h023pqffy767bpy1vlv";
};
enableParallelBuilding = true;
patches = [
./prefix-variable.patch
];
preInstall = ''
sed -i s,/usr/local,$out, Makefile
mkdir -p $out/lib $out/include
'';
meta = {
description = "A family of better random number generators";
homepage = http://www.pcg-random.org/;
license = stdenv.lib.licenses.asl20;
longDescription = ''
PCG is a family of simple fast space-efficient statistically good
algorithms for random number generation. Unlike many general-purpose RNGs,
they are also hard to predict.
'';
platforms = platforms.unix;
maintainers = [ maintainers.linus ];
repositories.git = git://github.com/imneme/pcg-c.git;
broken = stdenv.isi686; # https://github.com/imneme/pcg-c/issues/11
};
}