571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
89 lines
1.6 KiB
Nix
89 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, meson
|
|
, libtsm
|
|
, systemd
|
|
, libxkbcommon
|
|
, libdrm
|
|
, libGLU
|
|
, libGL
|
|
, pango
|
|
, pixman
|
|
, pkg-config
|
|
, docbook_xsl
|
|
, libxslt
|
|
, mesa
|
|
, ninja
|
|
, buildPackages
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kmscon";
|
|
version = "9.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Aetf";
|
|
repo = "kmscon";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-8owyyzCrZVbWXcCR+RA+m0MOrdzW+efI+rIMWEVEZ1o=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
depsBuildBuild = [
|
|
buildPackages.stdenv.cc
|
|
];
|
|
|
|
buildInputs = [
|
|
libGLU
|
|
libGL
|
|
libdrm
|
|
libtsm
|
|
libxkbcommon
|
|
pango
|
|
pixman
|
|
systemd
|
|
mesa
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
docbook_xsl
|
|
pkg-config
|
|
libxslt # xsltproc
|
|
];
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "0001-tests-fix-warnings.patch";
|
|
url = "https://github.com/Aetf/kmscon/commit/b65f4269b03de580923ab390bde795e7956b633f.patch";
|
|
sha256 = "sha256-ngflPwmNMM/2JzhV+hHiH3efQyoSULfqEywzWox9iAQ=";
|
|
})
|
|
];
|
|
|
|
# _FORTIFY_SOURCE requires compiling with optimization (-O)
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isGNU "-O"
|
|
+ " -Wno-error=maybe-uninitialized"; # https://github.com/Aetf/kmscon/issues/49
|
|
|
|
configureFlags = [
|
|
"--enable-multi-seat"
|
|
"--disable-debug"
|
|
"--enable-optimizations"
|
|
"--with-renderers=bbulk,gltex,pixman"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "KMS/DRM based System Console";
|
|
mainProgram = "kmscon";
|
|
homepage = "https://www.freedesktop.org/wiki/Software/kmscon/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ omasanori ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|