nixpkgs/pkgs/development/libraries/sfsexp/default.nix
Tuomas Tynkkynen 21f17d69f6 treewide: Add lots of meta.platforms
Build-tested on x86_64 Linux & Mac.
2016-08-02 21:42:43 +03:00

20 lines
507 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "sfsexp-${version}";
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;
};
}