nixpkgs/pkgs/os-specific/linux/vdo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.5 KiB
Nix
Raw Normal View History

2021-05-26 22:08:33 +00:00
{ lib, stdenv
, fetchFromGitHub
, installShellFiles
, libuuid
, lvm2_dmeventd # <libdevmapper-event.h>
, zlib
, python3
}:
stdenv.mkDerivation rec {
pname = "vdo";
2024-07-08 17:03:43 +00:00
version = "8.3.0.71";
2021-05-26 22:08:33 +00:00
src = fetchFromGitHub {
owner = "dm-vdo";
repo = pname;
rev = version;
2024-07-08 17:03:43 +00:00
hash = "sha256-FZerMUzth43p5jvKQalyYcW+mrl6SLjS8GrivY2qWkI=";
2021-05-26 22:08:33 +00:00
};
nativeBuildInputs = [
installShellFiles
];
buildInputs = [
libuuid
lvm2_dmeventd
zlib
python3.pkgs.wrapPython
];
propagatedBuildInputs = with python3.pkgs; [
pyyaml
];
pythonPath = propagatedBuildInputs;
makeFlags = [
"DESTDIR=${placeholder "out"}"
"INSTALLOWNER="
# all of these paths are relative to DESTDIR and have defaults that don't work for us
"bindir=/bin"
"defaultdocdir=/share/doc"
"mandir=/share/man"
"python3_sitelib=${python3.sitePackages}"
];
enableParallelBuilding = true;
postInstall = ''
2024-07-08 17:03:43 +00:00
installShellCompletion --bash $out/usr/share/bash-completion/completions/*
rm -rv $out/usr
2021-05-26 22:08:33 +00:00
wrapPythonPrograms
'';
meta = with lib; {
homepage = "https://github.com/dm-vdo/vdo";
description = "Set of userspace tools for managing pools of deduplicated and/or compressed block storage";
2023-05-16 17:22:49 +00:00
# platforms are defined in https://github.com/dm-vdo/vdo/blob/master/utils/uds/atomicDefs.h
platforms = [ "x86_64-linux" "aarch64-linux" "s390-linux" "powerpc64-linux" "powerpc64le-linux" ];
2021-05-26 22:08:33 +00:00
license = with licenses; [ gpl2Plus ];
maintainers = teams.helsinki-systems.members;
2021-05-26 22:08:33 +00:00
};
}