ustream-ssl: init at unstable-2024-07-28
This commit is contained in:
parent
31d31260b8
commit
5482554d52
2 changed files with 37 additions and 0 deletions
|
@ -112,6 +112,7 @@ in {
|
|||
tufted = callPackage ./tufted {};
|
||||
libubox = callPackage ./libubox {};
|
||||
ubus = callPackage ./ubus {};
|
||||
ustream-ssl = callPackage ./ustream-ssl {};
|
||||
iwinfo = callPackage ./iwinfo {};
|
||||
uevent-watch = callPackage ./uevent-watch {};
|
||||
usb-modeswitch = callPackage ./usb-modeswitch {};
|
||||
|
|
36
pkgs/ustream-ssl/default.nix
Normal file
36
pkgs/ustream-ssl/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
cmake,
|
||||
libubox,
|
||||
openssl,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ustream-ssl";
|
||||
version = "unstable-2024-07-28";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "openwrt";
|
||||
repo = "ustream-ssl";
|
||||
rev = "99bd3d2b167ccdffb6de072d02c380cb37b23e33";
|
||||
hash = "sha256-k9lyLv8QKYhWglDse5570cWXz1mHIca1l5NDbSkzXi4=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libubox
|
||||
openssl
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "ustream SSL wrapper";
|
||||
homepage = "https://github.com/openwrt/ustream-ssl";
|
||||
maintainers = with lib.maintainers; [ soyouzpanda ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue