Skip to content

Commit

Permalink
start lcsync package
Browse files Browse the repository at this point in the history
  • Loading branch information
albertchae committed Aug 8, 2023
1 parent c12e5b5 commit e6892da
Show file tree
Hide file tree
Showing 2 changed files with 21 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 @@ -4,6 +4,7 @@
gnunet-messenger-cli = callPackage ./pkgs/gnunet-messenger-cli {};
kikit = callPackage ./pkgs/kikit {};
lcrq = callPackage ./pkgs/lcrq {};
lcsync = callPackage ./pkgs/lcsync {};
liberaforms = callPackage ./pkgs/liberaforms {};
liberaforms-env = callPackage ./pkgs/liberaforms/env.nix {};
libgnunetchat = callPackage ./pkgs/libgnunetchat {};
Expand Down
20 changes: 20 additions & 0 deletions pkgs/lcsync/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
stdenv,
pkgs,
fetchFromGitea,
...
}:
stdenv.mkDerivation rec {
name = "lcsync";
version = "0.2.1";

src = fetchFromGitea {
domain = "codeberg.org";
owner = "librecast";
repo = "lcsync";
rev = "v${version}";
sha256 = "";
};
#buildInputs = [lcrq pkgs.libsodium];
#installFlags = ["PREFIX=$(out)"];
}

0 comments on commit e6892da

Please sign in to comment.