summary refs log tree commit diff
path: root/pkgs/development/libraries/sfsexp/default.nix
blob: 40009a8b7c36b2ca6931e66e2daaf67305b514a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "sfsexp";
  version = "1.3";

  src = fetchurl {
    url = "mirror://sourceforge/sexpr/sexpr-${version}.tar.gz";
    sha256 = "18gdwxjja0ip378hlzs8sp7q2g6hrmy7x10yf2wnxfmmylbpqn8k";
  };

  meta = with stdenv.lib; {
    description = "Small, fast s-expression library";
    homepage = "http://sexpr.sourceforge.net/";
    maintainers = with maintainers; [ jb55 ];
    license = licenses.gpl3;
    platforms = with platforms; unix;
  };
}