Skip to content

Commit

Permalink
chore: Clean up default.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
ribose-jeffreylau committed Jul 5, 2023
1 parent e265f63 commit a0439c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This library differs from the original C implementation in the following ways:
* It includes a test suite for correctness testing and tests against malformed
S-Expressions.
* It supports, and is tested against, all major platforms, including:
** Ubuntu, Debian, Fedora, CentOS
** Ubuntu, Debian, Fedora, CentOS, NixOS
** macOS
** Windows
** msys
Expand Down
15 changes: 5 additions & 10 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
, stdenv ? pkgs.stdenv
}:

stdenv.mkDerivation rec {
pname = "sexp";
stdenv.mkDerivation {
pname = "sexpp";
version = "unstable";

src = ./.;
Expand All @@ -39,11 +39,6 @@ stdenv.mkDerivation rec {

nativeBuildInputs = with pkgs; [ cmake gtest pkg-config ];

meta = with lib; {
homepage = "https://github.com/rnpgp/sexp";
description = "S-expressions parser and generator C++ library, fully compliant to [https://people.csail.mit.edu/rivest/Sexp.txt]";
license = licenses.bsd2;
platforms = platforms.all;
maintainers = with maintainers; [ ribose-jeffreylau ];
};
}
outputs = [ "out" "lib" "dev" ];

}

0 comments on commit a0439c1

Please sign in to comment.