mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
71 lines
1.7 KiB
Nix
71 lines
1.7 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, glib
|
|
, pandoc
|
|
, systemd
|
|
, libyaml
|
|
, python3
|
|
, libuuid
|
|
, bash-completion
|
|
, lib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "netplan";
|
|
version = "0.106.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "canonical";
|
|
repo = "netplan";
|
|
rev = version;
|
|
hash = "sha256-wQ4gd9+9YU92WGRMjSiF/zLCGxhaSl8s22pH1jr+Mm0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
glib
|
|
pandoc
|
|
];
|
|
|
|
buildInputs = [
|
|
systemd
|
|
glib
|
|
libyaml
|
|
(python3.withPackages (p: with p; [ pyyaml netifaces dbus-python rich ]))
|
|
libuuid
|
|
bash-completion
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace netplan/libnetplan.py \
|
|
--replace "/lib/netplan/generate" "$out/lib/netplan/generate" \
|
|
--replace "ctypes.util.find_library('netplan')" "\"$out/lib/libnetplan.so\""
|
|
|
|
substituteInPlace Makefile \
|
|
--replace 'SYSTEMD_GENERATOR_DIR=' 'SYSTEMD_GENERATOR_DIR ?= ' \
|
|
--replace 'SYSTEMD_UNIT_DIR=' 'SYSTEMD_UNIT_DIR ?= ' \
|
|
--replace 'BASH_COMPLETIONS_DIR=' 'BASH_COMPLETIONS_DIR ?= ' \
|
|
--replace 'pkg-config' '$(PKG_CONFIG)'
|
|
|
|
# from upstream https://github.com/canonical/netplan/blob/ee0d5df7b1dfbc3197865f02c724204b955e0e58/rpm/netplan.spec#L81
|
|
sed -e "s/-Werror//g" -i Makefile
|
|
'';
|
|
|
|
makeFlags = [
|
|
"PREFIX="
|
|
"DESTDIR=$(out)"
|
|
"SYSTEMD_GENERATOR_DIR=lib/systemd/system-generators/"
|
|
"SYSTEMD_UNIT_DIR=lib/systemd/units/"
|
|
"BASH_COMPLETIONS_DIR=share/bash-completion/completions"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Backend-agnostic network configuration in YAML";
|
|
homepage = "https://netplan.io";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ mkg20001 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|