mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-10-12 10:30:37 -04:00
deps: update cryptsetup
Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com>
This commit is contained in:
parent
b6a49e7e8b
commit
2452e0dd51
2 changed files with 14 additions and 4 deletions
6
flake.lock
generated
6
flake.lock
generated
|
@ -20,11 +20,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1743938762,
|
"lastModified": 1755268003,
|
||||||
"narHash": "sha256-UgFYn8sGv9B8PoFpUfCa43CjMZBl1x/ShQhRDHBFQdI=",
|
"narHash": "sha256-nNaeJjo861wFR0tjHDyCnHs1rbRtrMgxAKMoig9Sj/w=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "74a40410369a1c35ee09b8a1abee6f4acbedc059",
|
"rev": "32f313e49e42f715491e1ea7b306a87c16fe0388",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
12
flake.nix
12
flake.nix
|
@ -38,6 +38,15 @@
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
|
||||||
|
cryptsetup = prev.cryptsetup.overrideAttrs (old: rec {
|
||||||
|
pname = "cryptsetup";
|
||||||
|
version = "2.8.1";
|
||||||
|
src = prev.fetchurl {
|
||||||
|
url = "mirror://kernel/linux/utils/cryptsetup/v${prev.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||||
|
hash = "sha256-LDN563ZZfcq1CRFEmwE+JpfEv/zHFtu/DZsOj7u0b7Q=";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
# dnf5 assumes a TTY with a very small width by default, truncating its output instead of line-wrapping
|
# dnf5 assumes a TTY with a very small width by default, truncating its output instead of line-wrapping
|
||||||
# it. Force it to use more VT columns to avoid this, and make debugging errors easier.
|
# it. Force it to use more VT columns to avoid this, and make debugging errors easier.
|
||||||
dnf5-stub = prev.writeScriptBin "dnf5" ''
|
dnf5-stub = prev.writeScriptBin "dnf5" ''
|
||||||
|
@ -94,7 +103,8 @@
|
||||||
# Note that it's *not* a legacy attribute.
|
# Note that it's *not* a legacy attribute.
|
||||||
legacyPackages = {
|
legacyPackages = {
|
||||||
generate = pkgs.callPackage ./nix/generate.nix { };
|
generate = pkgs.callPackage ./nix/generate.nix { };
|
||||||
} // pkgs;
|
}
|
||||||
|
// pkgs;
|
||||||
|
|
||||||
packages.mkosi = mkosiDev;
|
packages.mkosi = mkosiDev;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue