Merge pull request #18971 from 8573/8573/pkg/update/chibi-scheme/0.7.3/1

chibi-scheme: 0.7 -> 0.7.3
This commit is contained in:
zimbatm 2016-09-26 12:17:18 +01:00 committed by GitHub
commit 994f022455

View file

@ -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 ];