Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / sfsexp / default.nix
blob3d047ccd7f50dea7cd9302f2f5b4698fae3055fe
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "sfsexp";
5   version = "1.4.1";
7   src = fetchFromGitHub {
8     owner = "mjsottile";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-uAk/8Emf23J0D3D5+eUEpWLY2fIvdQ7a80eGe9i1WQ8=";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   meta = with lib; {
17     description = "Small Fast S-Expression Library";
18     homepage = "https://github.com/mjsottile/sfsexp";
19     maintainers = with maintainers; [ jb55 ];
20     license = licenses.lgpl21Plus;
21     platforms = platforms.all;
22   };