cryptsetup: 2.8.0 -> 2.8.1 (#434959)

Changed files
+8 -6
pkgs
by-name
cr
cryptsetup
+8 -6
pkgs/by-name/cr/cryptsetup/package.nix
···
rebuildMan ? false,
}:
-
stdenv.mkDerivation rec {
pname = "cryptsetup";
-
version = "2.8.0";
outputs = [
"bin"
···
separateDebugInfo = true;
src = fetchurl {
-
url = "mirror://kernel/linux/utils/cryptsetup/v${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
-
hash = "sha256-zJ4tN8JahxzqN1ILKNUyIHsMFnD7EPxU1oBx9j9SQ6I=";
};
patches = [
···
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.gpl2Plus;
mainProgram = "cryptsetup";
maintainers = with lib.maintainers; [
···
];
platforms = with lib.platforms; linux;
};
-
}
···
rebuildMan ? false,
}:
+
stdenv.mkDerivation (finalAttrs: {
pname = "cryptsetup";
+
version = "2.8.1";
outputs = [
"bin"
···
separateDebugInfo = true;
src = fetchurl {
+
url =
+
"mirror://kernel/linux/utils/cryptsetup/v${lib.versions.majorMinor finalAttrs.version}/"
+
+ "cryptsetup-${finalAttrs.version}.tar.xz";
+
hash = "sha256-LDN563ZZfcq1CRFEmwE+JpfEv/zHFtu/DZsOj7u0b7Q=";
};
patches = [
···
meta = {
homepage = "https://gitlab.com/cryptsetup/cryptsetup/";
description = "LUKS for dm-crypt";
+
changelog = "https://gitlab.com/cryptsetup/cryptsetup/-/raw/v${finalAttrs.version}/docs/v${finalAttrs.version}-ReleaseNotes";
license = lib.licenses.gpl2Plus;
mainProgram = "cryptsetup";
maintainers = with lib.maintainers; [
···
];
platforms = with lib.platforms; linux;
};
+
})