about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/sfsexp/default.nix
blob: 3d047ccd7f50dea7cd9302f2f5b4698fae3055fe (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
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:

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

  src = fetchFromGitHub {
    owner = "mjsottile";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-uAk/8Emf23J0D3D5+eUEpWLY2fIvdQ7a80eGe9i1WQ8=";
  };

  nativeBuildInputs = [ autoreconfHook ];

  meta = with lib; {
    description = "Small Fast S-Expression Library";
    homepage = "https://github.com/mjsottile/sfsexp";
    maintainers = with maintainers; [ jb55 ];
    license = licenses.lgpl21Plus;
    platforms = platforms.all;
  };
}