mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
e3244e9ff0
The xxxFlagsArray variants were never meant to be used in nix code, at least they can't be used properly without __structuredAttrs turned on. If no spaces are passed in the argument the xxxFlagsArray can be replaced as-is with the non-Array variant. When whitespace needs to be passed, the derivation is additionally changed to enable __structuredAttrs.
63 lines
1.2 KiB
Nix
63 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
fontconfig,
|
|
harfbuzz,
|
|
libpng,
|
|
xcbutil,
|
|
libXcursor,
|
|
xcbutilimage,
|
|
libxkbcommon,
|
|
xcb-util-cursor,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
name = "xmoji";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Zirias";
|
|
repo = "xmoji";
|
|
rev =
|
|
let
|
|
inherit (lib.versions) majorMinor patch;
|
|
inherit (finalAttrs) version;
|
|
in
|
|
"refs/tags/v${majorMinor version}-${patch version}";
|
|
hash = "sha256-ZZ1jW97JUv003bAMZZfGWbAAPgeZlpBKREaedFi3R8M=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace zimk/lib/platform.mk \
|
|
--replace-fail 'PATH:=''$(POSIXPATH)' "#"
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [
|
|
fontconfig
|
|
harfbuzz
|
|
libXcursor
|
|
libpng
|
|
libxkbcommon
|
|
xcb-util-cursor
|
|
xcbutil
|
|
xcbutilimage
|
|
];
|
|
|
|
makeFlags = [ "prefix=${placeholder "out"}" ];
|
|
|
|
meta = {
|
|
description = "Plain X11 emoji keyboard";
|
|
homepage = "https://github.com/Zirias/xmoji";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers; [ sigmanificient ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|