aboutsummaryrefslogtreecommitdiff
path: root/pkgs/games/gnugo
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-05-17 09:21:42 +0000
committerPeter Simons <simons@cryp.to>2010-05-17 09:21:42 +0000
commit71f164ac1e5d4baa69fbd770da2e813e0f387ffb (patch)
treed2367254c8ffc3ba3ffaa5d704487b60f446f97f /pkgs/games/gnugo
parent0dc24d9f049ad3baf652047c624acc7811308bf2 (diff)
Three Games and Perl Support for Irssi
Here are four patches. Three of them add expressions for games. The fourth, irssi-perl.patch, adds perl as an input for irssi, so that one can run perl plugins in irssi. I didn't make the perl input optional, but maybe it should be to keep the irssi expression light. svn path=/nixpkgs/trunk/; revision=21813
Diffstat (limited to 'pkgs/games/gnugo')
-rw-r--r--pkgs/games/gnugo/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/games/gnugo/default.nix b/pkgs/games/gnugo/default.nix
new file mode 100644
index 000000000000..21c4195b28b8
--- /dev/null
+++ b/pkgs/games/gnugo/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl }:
+
+let
+
+ versionNumber = "3.8";
+
+in
+
+stdenv.mkDerivation {
+
+ name = "gnugo-${versionNumber}";
+
+ src = fetchurl {
+ url = "mirror://gnu/gnugo/gnugo-${versionNumber}.tar.gz";
+ sha256 = "0wkahvqpzq6lzl5r49a4sd4p52frdmphnqsfdv7gdp24bykdfs6s";
+ };
+
+ meta = {
+ description = "GNU Go - A computer go player";
+ homepage = "http://http://www.gnu.org/software/gnugo/";
+ license = "GPLv3";
+ };
+
+}