Skip to content

Commit

Permalink
atomic-desktop: fetched, pkg-conf failing
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Leightcap <[email protected]>
  • Loading branch information
jleightcap committed Sep 30, 2023
1 parent da86490 commit 61ece20
Show file tree
Hide file tree
Showing 2 changed files with 30 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 @@ -8,6 +8,7 @@
in rec {
atomic-cli = callPackage ./pkgs/atomic-cli {};
atomic-server = callPackage ./pkgs/atomic-server {};
atomic-desktop = callPackage ./pkgs/atomic-desktop {};
flarum = callPackage ./pkgs/flarum {};
gnunet-messenger-cli = callPackage ./pkgs/gnunet-messenger-cli {};
kikit = callPackage ./pkgs/kikit {};
Expand Down
29 changes: 29 additions & 0 deletions pkgs/atomic-desktop/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ fetchFromGitHub, rustPlatform, stdenv, lib, pkg-config, glib, ... }:

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

src = fetchFromGitHub {
owner = "atomicdata-dev";
repo = "atomic-server";
rev = "v${version}";
hash = "sha256-rqucTVvlXe9CXPsZ2cNzyDK9onXw/H96PzWpTR7Fdl4=";
};

sourceRoot = "${src.name}/desktop";

nativeBuildInputs = [
pkg-config
glib # FIXME(jl): is this a runtime dep?
];

cargoHash = "sha256-5N6P2oHw/sTGUrLdw2bCw8mNHy5OxFPUhUoQEWkwkm4=";

meta = with lib; {
description = "";
homepage = "";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}

0 comments on commit 61ece20

Please sign in to comment.