Merge pull request #133081 from SuperSandro2000/yder

yder: format, cleanup
This commit is contained in:
Sandro
2021-08-08 06:11:05 +02:00
committed by GitHub
+11 -3
View File
@@ -1,7 +1,14 @@
{ stdenv, lib, fetchFromGitHub, cmake, orcania, systemd, check, subunit
{ stdenv
, lib
, fetchFromGitHub
, cmake
, orcania
, systemd
, check
, subunit
, withSystemd ? stdenv.isLinux
}:
assert withSystemd -> systemd != null;
stdenv.mkDerivation rec {
pname = "yder";
version = "1.4.12";
@@ -21,7 +28,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
buildInputs = [ orcania ] ++ lib.optional withSystemd systemd;
buildInputs = [ orcania ]
++ lib.optional withSystemd systemd;
checkInputs = [ check subunit ];