forked from DGNum/liminix
Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
|
605055deea |
2 changed files with 37 additions and 0 deletions
|
@ -112,6 +112,7 @@ in {
|
|||
tufted = callPackage ./tufted {};
|
||||
libubox = callPackage ./libubox {};
|
||||
ubus = callPackage ./ubus {};
|
||||
usteer = callPackage ./usteer {};
|
||||
uevent-watch = callPackage ./uevent-watch {};
|
||||
usb-modeswitch = callPackage ./usb-modeswitch {};
|
||||
writeAshScript = callPackage ./write-ash-script {};
|
||||
|
|
36
pkgs/usteer/default.nix
Normal file
36
pkgs/usteer/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
cmake,
|
||||
json_c,
|
||||
libpcap,
|
||||
libubox,
|
||||
ubus,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "usteer";
|
||||
version = "unstable-04-09-2024";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "openwrt";
|
||||
repo = "usteer";
|
||||
rev = "e218150979b40a1b3c59ad0aaa3bbb943814db1e";
|
||||
hash = "sha256-shbN5Wp7m/olr0OcckcPk11yXnJxpnllXqi/bw+X7gM=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
buildInputs = [ ubus libpcap libubox json_c ];
|
||||
|
||||
meta = {
|
||||
description = "";
|
||||
homepage = "https://github.com/openwrt/usteer";
|
||||
maintainers = with lib.maintainers; [ raitobezarius ];
|
||||
mainProgram = "usteer";
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue