push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,89 @@
{
lib,
stdenv,
fetchFromGitHub,
autoconf,
automake,
expat,
fontconfig,
freetype,
gettext,
libX11,
libXau,
libXdmcp,
libXext,
libXft,
libXinerama,
libXmu,
libXpm,
libjpeg,
libpng,
librsvg,
pango,
pkg-config,
which,
xorg,
xorgproto,
gitUpdater,
}:
stdenv.mkDerivation rec {
pname = "jwm";
version = "2.4.6";
src = fetchFromGitHub {
owner = "joewing";
repo = "jwm";
rev = "v${version}";
hash = "sha256-odGqHdm8xnjEcXmpKMy51HEhbjcROLL3hRSdlbmTr2g=";
};
nativeBuildInputs = [
autoconf
automake
gettext
pkg-config
which
];
buildInputs = [
expat
fontconfig
freetype
libX11
libXau
libXdmcp
libXext
libXft
libXinerama
libXmu
libXpm
libjpeg
libpng
librsvg
pango
xorg.libXrender
xorgproto
];
postPatch = ''
sed -i '/AM_ICONV/i AC_CONFIG_MACRO_DIRS([m4])' configure.ac
'';
preConfigure = "NOCONFIGURE=1 ./autogen.sh";
enableParallelBuilding = true;
passthru.updateScript = gitUpdater {
rev-prefix = "v";
};
meta = {
homepage = "http://joewing.net/projects/jwm/";
description = "Joe's Window Manager is a light-weight X11 window manager";
license = lib.licenses.mit;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.romildo ];
mainProgram = "jwm";
};
}

View File

@@ -0,0 +1,62 @@
{
lib,
stdenv,
fetchbzr,
cmake,
pkg-config,
gettext,
libXpm,
libGL,
fltk,
hicolor-icon-theme,
glib,
gnome2,
which,
}:
stdenv.mkDerivation rec {
pname = "jwm-settings-manager";
version = "2019-01-27";
src = fetchbzr {
url = "lp:${pname}";
rev = "292";
sha256 = "1yqc1ac2pbkc88z7p1qags1jygdlr5y1rhc5mx6gapcf54bk0lmi";
};
nativeBuildInputs = [
cmake
pkg-config
gettext
];
buildInputs = [
libXpm
libGL
fltk
hicolor-icon-theme
which # needed at runtime to locate optional programs
glib.bin # provides gsettings
gnome2.GConf # provides gconftool-2
];
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace 'CMAKE_INSTALL_PREFIX "/usr"' "CMAKE_INSTALL_PREFIX $out"
substituteInPlace data/CMakeLists.txt \
--replace 'DESTINATION usr/share' "DESTINATION share"
'';
postConfigure = ''
substituteInPlace cmake_install.cmake \
--replace "/var/empty" "/usr"
'';
meta = with lib; {
description = "Full configuration manager for JWM";
homepage = "https://joewing.net/projects/jwm";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
};
}