Skip to content

Commit

Permalink
init: atomic-server at 0.34.5
Browse files Browse the repository at this point in the history
Co-authored-by: Jason Odoom <[email protected]>
Co-authored-by: Anish Lakhwara <[email protected]>
Co-authored-by: Dominic Mills <[email protected]>
Co-authored-by: Albert Chae <[email protected]>
Co-authored-by: Jack Leightcap <[email protected]>
Signed-off-by: Jack Leightcap <[email protected]>
  • Loading branch information
6 people committed Sep 27, 2023
1 parent 01112c5 commit a4d6053
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
self = let
pretalxPlugins = lib.recurseIntoAttrs (callPackage ./pkgs/pretalx/plugins.nix {});
in rec {
atomic-server = callPackage ./pkgs/atomic-server {};
flarum = callPackage ./pkgs/flarum {};
gnunet-messenger-cli = callPackage ./pkgs/gnunet-messenger-cli {};
kikit = callPackage ./pkgs/kikit {};
Expand Down
26 changes: 26 additions & 0 deletions pkgs/atomic-server/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ lib
, rustPlatform
, fetchCrate
, stdenv
}:

rustPlatform.buildRustPackage rec {
pname = "atomic-server";
version = "0.34.5";

src = fetchCrate {
inherit pname version;
hash = "sha256-X7G/EYhs7CBRZ+7oVKyQRk5WDyFKnQmi8aLbi/KIwgI=";
};

cargoHash = "sha256-mox1MdWgCgzytjqAPu1xHKWP8D5oRnXvMyqRbZXM9Pc=";

doCheck = false; # TODO(jl): broken upstream

meta = with lib; {
description = "A Rust library to serialize, parse, store, convert, validate, edit, fetch and store Atomic Data. Powers both atomic-cli and atomic-server.";
homepage = "docs.atomicdata.dev";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}

0 comments on commit a4d6053

Please sign in to comment.