2022-09-20 04:20:00 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2015-04-02 21:25:00 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "sfsexp";
|
2023-03-30 05:10:27 +00:00
|
|
|
version = "1.4.1";
|
2015-04-02 21:25:00 +00:00
|
|
|
|
2022-09-20 04:20:00 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mjsottile";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-03-30 05:10:27 +00:00
|
|
|
sha256 = "sha256-uAk/8Emf23J0D3D5+eUEpWLY2fIvdQ7a80eGe9i1WQ8=";
|
2015-04-02 21:25:00 +00:00
|
|
|
};
|
|
|
|
|
2022-09-20 04:20:00 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2022-09-20 04:20:00 +00:00
|
|
|
description = "Small Fast S-Expression Library";
|
|
|
|
homepage = "https://github.com/mjsottile/sfsexp";
|
2015-04-02 21:25:00 +00:00
|
|
|
maintainers = with maintainers; [ jb55 ];
|
2022-09-20 04:20:00 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
platforms = platforms.all;
|
2015-04-02 21:25:00 +00:00
|
|
|
};
|
|
|
|
}
|