commit
f698fbecd2
@ -109,6 +109,7 @@
|
|||||||
mornfall = "Petr Ročkai <me@mornfall.net>";
|
mornfall = "Petr Ročkai <me@mornfall.net>";
|
||||||
MP2E = "Cray Elliott <MP2E@archlinux.us>";
|
MP2E = "Cray Elliott <MP2E@archlinux.us>";
|
||||||
msackman = "Matthew Sackman <matthew@wellquite.org>";
|
msackman = "Matthew Sackman <matthew@wellquite.org>";
|
||||||
|
mtreskin = "Max Treskin <zerthurd@gmail.com>";
|
||||||
muflax = "Stefan Dorn <mail@muflax.com>";
|
muflax = "Stefan Dorn <mail@muflax.com>";
|
||||||
nathan-gs = "Nathan Bijnens <nathan@nathan.gs>";
|
nathan-gs = "Nathan Bijnens <nathan@nathan.gs>";
|
||||||
nckx = "Tobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>";
|
nckx = "Tobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>";
|
||||||
|
24
pkgs/development/libraries/poker-eval/default.nix
Normal file
24
pkgs/development/libraries/poker-eval/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "poker-eval-138.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://download.gna.org/pokersource/sources/${name}.tar.gz";
|
||||||
|
sha256 = "0s6gvcdwdi6j7nrg6mmb5l971gclk0p99bcbfsynx1gnj159wrcj";
|
||||||
|
};
|
||||||
|
|
||||||
|
patchPhase = ''
|
||||||
|
sed -i -e 's#pkgincludedir = $(includedir)/@PACKAGE@#pkgincludedir = $(includedir)#g' Makefile.in
|
||||||
|
sed -i -e 's#pkgincludedir = $(includedir)/@PACKAGE@#pkgincludedir = $(includedir)#g' include/Makefile.in
|
||||||
|
sed -i -e 's#includedir=@includedir@/poker-eval#includedir=@includedir@/#g' poker-eval.pc.in
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://pokersource.org/poker-eval/;
|
||||||
|
description = "poker hand evaluator";
|
||||||
|
license = stdenv.lib.licenses.gpl3;
|
||||||
|
maintainers = [stdenv.lib.maintainers.mtreskin];
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -6634,6 +6634,8 @@ let
|
|||||||
|
|
||||||
podofo = callPackage ../development/libraries/podofo { lua5 = lua5_1; };
|
podofo = callPackage ../development/libraries/podofo { lua5 = lua5_1; };
|
||||||
|
|
||||||
|
poker-eval = callPackage ../development/libraries/poker-eval { };
|
||||||
|
|
||||||
polkit = callPackage ../development/libraries/polkit {
|
polkit = callPackage ../development/libraries/polkit {
|
||||||
spidermonkey = spidermonkey_185;
|
spidermonkey = spidermonkey_185;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user