cryptsetup: 2.5.0 -> 2.6.1

This commit is contained in:
Matt Melling 2023-02-01 14:19:04 +00:00
parent e9211ef184
commit 2c102088fa
No known key found for this signature in database
GPG Key ID: 6D94F6DB60A64FFE

View File

@ -10,14 +10,14 @@
stdenv.mkDerivation rec {
pname = "cryptsetup";
version = "2.5.0";
version = "2.6.1";
outputs = [ "bin" "out" "dev" "man" ];
separateDebugInfo = true;
src = fetchurl {
url = "mirror://kernel/linux/utils/cryptsetup/v2.5/${pname}-${version}.tar.xz";
sha256 = "sha256-kYSm672c5+shEVLn90GmyC8tHMDiSoTsnFKTnu4PBUI=";
url = "mirror://kernel/linux/utils/cryptsetup/v${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
hash = "sha256-QQ3tZaEHKrnI5Brd7Te5cpwIf+9NLbArtO9SmtbaRpM=";
};
patches = [
@ -74,6 +74,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "https://gitlab.com/cryptsetup/cryptsetup/";
description = "LUKS for dm-crypt";
changelog = "https://gitlab.com/cryptsetup/cryptsetup/-/raw/v${version}/docs/v${version}-ReleaseNotes";
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ ];
platforms = with lib.platforms; linux;