nixpkgs/pkgs/development/interpreters/scsh/default.nix
Joachim Fasting 8050aa1c80 scsh: 0.6.7 -> 0.7 pre-release
The scsh HEAD is buildable, whereas 0.6.7 segfaults during image creation.
2015-07-21 11:34:13 +02:00

23 lines
641 B
Nix

{ stdenv, fetchgit, autoconf, automake, autoreconfHook, scheme48 }:
stdenv.mkDerivation {
name = "scsh-0.7pre";
src = fetchgit {
url = "git://github.com/scheme/scsh.git";
rev = "f99b8c5293628cfeaeb792019072e3a96841104f";
fetchSubmodules = true;
sha256 = "0fz1r0bmiii9ld91r84dqkqwhnqk0h6drdycq93zcy5ndyn12fqp";
};
buildInputs = [ autoconf automake autoreconfHook scheme48 ];
configureFlags = ''--with-scheme48=${scheme48}'';
meta = with stdenv.lib; {
description = "A Scheme shell";
homepage = http://www.scsh.net/;
license = licenses.bsd3;
maintainers = with maintainers; [ joachifm ];
};
}