summary refs log tree commit diff
path: root/pkgs/development/interpreters/chibi
diff options
context:
space:
mode:
authorc74d <8573dd@gmail.com>2016-09-26 04:36:33 +0000
committerc74d <8573dd@gmail.com>2016-09-26 04:36:33 +0000
commit87b8465830fb0254c749d7d0f1880abe8257c8c5 (patch)
tree50271a86b405029e0614a925f2127b12057b5ec4 /pkgs/development/interpreters/chibi
parentcb2f84e4d70772804d723b10cc2469bfcd658488 (diff)
downloadnixpkgs-87b8465830fb0254c749d7d0f1880abe8257c8c5.tar
nixpkgs-87b8465830fb0254c749d7d0f1880abe8257c8c5.tar.gz
nixpkgs-87b8465830fb0254c749d7d0f1880abe8257c8c5.tar.bz2
nixpkgs-87b8465830fb0254c749d7d0f1880abe8257c8c5.tar.lz
nixpkgs-87b8465830fb0254c749d7d0f1880abe8257c8c5.tar.xz
nixpkgs-87b8465830fb0254c749d7d0f1880abe8257c8c5.tar.zst
nixpkgs-87b8465830fb0254c749d7d0f1880abe8257c8c5.zip
chibi-scheme: 0.7 -> 0.7.3
Update the `chibi-scheme` (attribute `chibi`) package from version 0.7
to version 0.7.3.

The homepage listed for this package before this change,
<https://code.google.com/p/chibi-scheme/>, now redirects to
<https://github.com/ashinn/chibi-scheme>; this patch changes this
package to use this GitHub version of the software.

I have tested this change per nixpkgs manual section 10.1 ("Making
patches").
Diffstat (limited to 'pkgs/development/interpreters/chibi')
-rw-r--r--pkgs/development/interpreters/chibi/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/development/interpreters/chibi/default.nix b/pkgs/development/interpreters/chibi/default.nix
index b4a0b77e705..d1c8cf15fce 100644
--- a/pkgs/development/interpreters/chibi/default.nix
+++ b/pkgs/development/interpreters/chibi/default.nix
@@ -1,22 +1,24 @@
-{ stdenv, fetchurl, makeWrapper }:
+{ stdenv, fetchFromGitHub, makeWrapper }:
 let
-  version = "0.7";
+  version = "0.7.3";
   name = "chibi-scheme-${version}";
 in
 stdenv.mkDerivation {
   inherit name;
 
   meta = {
-    homepage = "https://code.google.com/p/chibi-scheme/";
+    homepage = "https://github.com/ashinn/chibi-scheme";
     description = "Small Footprint Scheme for use as a C Extension Language";
     platforms = stdenv.lib.platforms.all;
     license = stdenv.lib.licenses.bsd3;
     maintainers = [ stdenv.lib.maintainers.DerGuteMoritz ];
   };
 
-  src = fetchurl {
-    url = "http://abrek.synthcode.com/${name}.tgz";
-    sha256 = "1hhkq0khgi8i24xv66y7r6pgk1issn1i2bf7rv91rbk0wm0kv7qm";
+  src = fetchFromGitHub {
+    owner = "ashinn";
+    repo = "chibi-scheme";
+    rev = version;
+    sha256 = "05b17flppkll1a2c2aq6lxh4iif4pjmpxmyrmiqzk0ls85gvai2x";
   };
 
   buildInputs = [ makeWrapper ];