Skip to content

Commit

Permalink
librecast: package librecast
Browse files Browse the repository at this point in the history
Co-authored-by: Jason Odoom <jasonodoom@gmail.com>
Co-authored-by: Anish Lakhwara <anish+git@lakhwara.com>
Co-authored-by: Dominic Mills <dominic.millz27@gmail.com>
Co-authored-by: Albert Chae <albertchae@users.noreply.github.com>
Co-authored-by: Jack Leightcap <jack@leightcap.com>
Signed-off-by: Jack Leightcap <jack@leightcap.com>
Signed-off-by: Jason Odoom <jasonodoom@gmail.com>
  • Loading branch information
5 people committed Aug 5, 2023
1 parent e1ec002 commit 268b02e
Show file tree
Hide file tree
Showing 2 changed files with 22 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 @@ -7,6 +7,7 @@
liberaforms = callPackage ./pkgs/liberaforms {};
liberaforms-env = callPackage ./pkgs/liberaforms/env.nix {};
libgnunetchat = callPackage ./pkgs/libgnunetchat {};
librecast = callPackage ./pkgs/librecast {inherit lcrq;};
};

nixpkgs-candidates = {
Expand Down
21 changes: 21 additions & 0 deletions pkgs/librecast/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
stdenv,
pkgs,
fetchFromGitea,
lcrq,
...
}:
stdenv.mkDerivation rec {
name = "librecast";
version = "0.6.1";

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

0 comments on commit 268b02e

Please sign in to comment.