summary refs log tree commit diff
path: root/pkgs/shells/es/default.nix
blob: 3a4574fb8e161dd939642d385fa51745b2ff9590 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ stdenv, fetchgit, readline, yacc, autoconf, automake, libtool }:

let
  version = "git-2015-04-11";
in
stdenv.mkDerivation {

  name = "es-${version}";

  src = fetchgit {
    url = "git://github.com/wryun/es-shell";
    rev = "fdf29d5296ce3a0ef96d2b5952cff07878753975";
    sha256 = "1hj0g8r59ry9l50h4gdal38nf8lvb3cgl6c9bx5aabkw5i778dfk";
  };

  buildInputs = [ readline yacc libtool autoconf automake ];

  preConfigure =
    ''
      aclocal
      autoconf
      libtoolize -qi
    '';

  configureFlags="--with-readline --prefix=$(out) --bindir=$(out)/bin --mandir=$(out)/man";

  preInstall = ''
    mkdir -p $out/bin
    mkdir -p $out/man/man1
  '';

  meta = with stdenv.lib; {
    description = "Es is an extensible shell";
    longDescription =
      ''
        Es is an extensible shell. The language was derived
        from the Plan 9 shell, rc, and was influenced by
        functional programming languages, such as Scheme,
        and the Tcl embeddable programming language.
      '';
    homepage = http://wryun.github.io/es-shell/;
    license = licenses.publicDomain;
    maintainers = [ maintainers.sjmackenzie ];
    platforms = platforms.all;
  };
}