mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
rauc: 1.13 -> 1.14, enable composefs
Release Notes: https://pengutronix.de/de/blog/2025-04-09-rauc-v1-14-released.html
This commit is contained in:
parent
4977b7b20a
commit
ee2eef2b3a
1 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
composefs,
|
||||
curl,
|
||||
dbus,
|
||||
fetchFromGitHub,
|
||||
|
@ -18,13 +19,13 @@
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "rauc";
|
||||
version = "1.13";
|
||||
version = "1.14";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rauc";
|
||||
repo = "rauc";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-Vq1dudB8OQveclAIVgiB8jbtp4o2Ga5v61Y6JUjOpbs=";
|
||||
sha256 = "sha256-tpynDSCQ8E5DE82BvIJ2lEmwFQQpyYkV9UqjKKlArpw=";
|
||||
};
|
||||
|
||||
passthru = {
|
||||
|
@ -41,6 +42,7 @@ stdenv.mkDerivation rec {
|
|||
];
|
||||
|
||||
buildInputs = [
|
||||
composefs
|
||||
curl
|
||||
dbus
|
||||
glib
|
||||
|
@ -53,6 +55,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
mesonFlags = [
|
||||
"--buildtype=release"
|
||||
(lib.mesonEnable "composefs" true)
|
||||
(lib.mesonOption "systemdunitdir" "${placeholder "out"}/lib/systemd/system")
|
||||
(lib.mesonOption "dbusinterfacesdir" "${placeholder "out"}/share/dbus-1/interfaces")
|
||||
(lib.mesonOption "dbuspolicydir" "${placeholder "out"}/share/dbus-1/system.d")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue