rauc: init at 1.5
The Robust Auto Update Controller is an update program for embedded systems. Primarily useful in NixOS for working with bundles.
This commit is contained in:
parent
b16c1df5c9
commit
1d260dad5a
2 changed files with 52 additions and 0 deletions
50
pkgs/tools/misc/rauc/default.nix
Normal file
50
pkgs/tools/misc/rauc/default.nix
Normal file
|
@ -0,0 +1,50 @@
|
|||
{ autoreconfHook
|
||||
, curl
|
||||
, dbus
|
||||
, fetchFromGitHub
|
||||
, glib
|
||||
, json-glib
|
||||
, lib
|
||||
, nix-update-script
|
||||
, openssl
|
||||
, pkg-config
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "rauc";
|
||||
version = "1.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "10v9nllfw5y53797p00hk6645zkaa6cacsim1rh6y2jngnqfkmw0";
|
||||
};
|
||||
|
||||
passthru = {
|
||||
updateScript = nix-update-script {
|
||||
attrPath = pname;
|
||||
};
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
||||
|
||||
buildInputs = [ curl dbus glib json-glib openssl ];
|
||||
|
||||
configureFlags = [
|
||||
"--with-dbusinterfacesdir=${placeholder "out"}/share/dbus-1/interfaces"
|
||||
"--with-dbuspolicydir=${placeholder "out"}/share/dbus-1/systemd.d"
|
||||
"--with-dbussystemservicedir=${placeholder "out"}/share/dbus-1/system-services"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Safe and secure software updates for embedded Linux";
|
||||
homepage = "https://rauc.io";
|
||||
license = licenses.lgpl21;
|
||||
maintainers = with maintainers; [ emantor ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
}
|
|
@ -28888,6 +28888,8 @@ in
|
|||
|
||||
rargs = callPackage ../tools/misc/rargs { };
|
||||
|
||||
rauc = callPackage ../tools/misc/rauc { };
|
||||
|
||||
redprl = callPackage ../applications/science/logic/redprl { };
|
||||
|
||||
renderizer = pkgs.callPackage ../development/tools/renderizer {};
|
||||
|
|
Loading…
Reference in a new issue