Skip to content

Commit

Permalink
librecast: package librecast
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
5 people committed Aug 5, 2023
1 parent e1ec002 commit 9f96382
Show file tree
Hide file tree
Showing 2 changed files with 17 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
16 changes: 16 additions & 0 deletions pkgs/librecast/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{ 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 9f96382

Please sign in to comment.