Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
c3b38df
cdist: move to pkgs/by-name
quantenzitrone Jan 26, 2026
c7798cb
ibmcloud-cli: move to pkgs/by-name
quantenzitrone Jan 26, 2026
37abaa7
meraki-cli: move to pkgs/by-name
quantenzitrone Jan 26, 2026
67d0d31
meshcentral: move to pkgs/by-name
quantenzitrone Jan 26, 2026
1c633f9
pulumi-bin: move to pkgs/by-name
quantenzitrone Jan 26, 2026
8cc83e4
turbovnc: move to pkgs/by-name
quantenzitrone Jan 26, 2026
05fdd11
winbox3: move to pkgs/by-name
quantenzitrone Jan 26, 2026
27b5db0
unetbootin: move to pkgs/by-name
quantenzitrone Jan 26, 2026
777f559
swftools: move to pkgs/by-name
quantenzitrone Jan 26, 2026
1037c24
unar: move to pkgs/by-name
quantenzitrone Jan 26, 2026
a26f47d
unrar-wrapper: move to pkgs/by-name
quantenzitrone Jan 26, 2026
c6332f2
libstrangle: move to pkgs/by-name
quantenzitrone Jan 26, 2026
3c439f7
virtualgl{,Lib}: move to pkgs/by-name
quantenzitrone Jan 26, 2026
0f3f3b3
xbindkeys-config: move to pkgs/by-name
quantenzitrone Jan 26, 2026
2a7711e
pyznap: move to pkgs/by-name
quantenzitrone Jan 26, 2026
8367bed
ugarit: move to pkgs/by-name
quantenzitrone Jan 26, 2026
9177a97
ugarit-manifest-maker: move to pkgs/by-name
quantenzitrone Jan 26, 2026
dba8bc3
liquidsoap: move to pkgs/by-name
quantenzitrone Jan 26, 2026
c9fc9e9
tidal-dl: move to pkgs/by-name
quantenzitrone Jan 26, 2026
ca7253d
yabridge{,ctl}: move to pkgs/by-name
quantenzitrone Jan 26, 2026
ddee5b3
disorderfs: move to pkgs/by-name
quantenzitrone Jan 26, 2026
5a0b3ee
kio-fuse: move to pkgs/by-name
quantenzitrone Feb 1, 2026
2f68dc4
mergerfs{,-tools}: move to pkgs/by-name
quantenzitrone Jan 26, 2026
6af66cd
mkspiffs: move to pkgs/by-name
quantenzitrone Jan 26, 2026
fd9de9d
gamemode: move to pkgs/by-name
quantenzitrone Jan 26, 2026
bc59787
pokefinder: move to pkgs/by-name
quantenzitrone Jan 26, 2026
37bd1f5
cloud-init: move to pkgs/by-name
quantenzitrone Jan 26, 2026
aefc7ac
supermin: move to pkgs/by-name
quantenzitrone Jan 26, 2026
437560d
asciidoc: move to pkgs/by-name
quantenzitrone Jan 26, 2026
b863e49
kramdown-asciidoc: move to pkgs/by-name
quantenzitrone Jan 26, 2026
58d8efa
xmlto: move to pkgs/by-name
quantenzitrone Jan 26, 2026
7df6811
tikzit: move to pkgs/by-name
quantenzitrone Jan 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@
enableStandardFeatures ? false,
sourceHighlight,
highlight,
pygments,
graphviz,
texliveMinimal,
dblatexFull,
libxslt,
w3m,
w3m-batch,
lynx,
imagemagick,
lilypond,
Expand Down Expand Up @@ -45,11 +44,7 @@
enableQrcodeFilter ? false,
qrencode,
enableMatplotlibFilter ? false,
matplotlib,
numpy,
enableAafigureFilter ? false,
aafigure,
recursive-pth-loader,
# backends
enableDeckjsBackend ? false,
enableOdfBackend ? false,
Expand All @@ -61,6 +56,13 @@
}:

let
inherit (python3.pkgs)
pygments
matplotlib
numpy
aafigure
recursive-pth-loader
;

_enableDitaaFilter = (enableExtraPlugins && enableJava) || enableDitaaFilter;
_enableMscgenFilter = enableExtraPlugins || enableMscgenFilter;
Expand Down Expand Up @@ -268,7 +270,7 @@ python3.pkgs.buildPythonApplication rec {
-e "s|^XSLTPROC =.*|XSLTPROC = '${libxslt.bin}/bin/xsltproc'|" \
-e "s|^DBLATEX =.*|DBLATEX = '${dblatexFull}/bin/dblatex'|" \
${lib.optionalString enableJava ''-e "s|^FOP =.*|FOP = '${fop}/bin/fop'|"''} \
-e "s|^W3M =.*|W3M = '${w3m}/bin/w3m'|" \
-e "s|^W3M =.*|W3M = '${w3m-batch}/bin/w3m'|" \
-e "s|^LYNX =.*|LYNX = '${lynx}/bin/lynx'|" \
-e "s|^XMLLINT =.*|XMLLINT = '${libxml2.bin}/bin/xmllint'|" \
-e "s|^EPUBCHECK =.*|EPUBCHECK = '${epubcheck}/bin/epubcheck'|" \
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
{
lib,
buildPythonApplication,
python3Packages,
fetchFromGitea,
six,
sphinxHook,
sphinx-rtd-theme,
}:

buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "cdist";
version = "7.0.0";
format = "setuptools";
Expand All @@ -25,7 +22,7 @@ buildPythonApplication rec {
hash = "sha256-lIx0RtGQJdY2e00azI9yS6TV+5pCegpKOOD0dQmgMqA=";
};

nativeBuildInputs = [
nativeBuildInputs = with python3Packages; [
six
sphinxHook
sphinx-rtd-theme
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
pkg-config,
fuse,
attr,
asciidoc,
asciidoc-full,
}:

stdenv.mkDerivation rec {
Expand All @@ -19,7 +19,7 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [
pkg-config
asciidoc
asciidoc-full
];

buildInputs = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
lib,
stdenv,
fetchFromGitHub,
libgamemode32,
pkgsi686Linux,
makeWrapper,
meson,
ninja,
Expand Down Expand Up @@ -49,7 +49,7 @@ stdenv.mkDerivation (finalAttrs: {
]
++ lib.optionals (stdenv.hostPlatform.system == "x86_64-linux") [
# Support wrapping 32bit applications on a 64bit linux system
libgamemode32
pkgsi686Linux.gamemode.lib
]
)
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
lib,
stdenv,
stdenvNoCC,
fetchurl,
installShellFiles,
writableTmpDirAsHomeHook,
}:
let
stdenv = stdenvNoCC;
arch =
with stdenv.hostPlatform;
if isx86_64 then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
fetchgit,
cmake,
extra-cmake-modules,
wrapQtAppsHook,
kio,
libsForQt5,
fuse3,
}:

Expand All @@ -22,11 +21,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
cmake
extra-cmake-modules
wrapQtAppsHook
libsForQt5.wrapQtAppsHook
];

buildInputs = [
kio
libsForQt5.kio
fuse3
];

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
lib,
stdenv,
stdenv_32bit,
fetchFromGitLab,
fetchpatch,
libGL,
libX11,
}:

stdenv.mkDerivation rec {
stdenv_32bit.mkDerivation rec {
pname = "libstrangle";
version = "unstable-202202022";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,24 @@
which,
pkg-config,
libjpeg,
ocamlPackages,
ocaml-ng,
awscli2,
bubblewrap,
curl,
dune,
ffmpeg,
ffmpeg_6-full,
yt-dlp,
runtimePackages ? [
awscli2
bubblewrap
curl
ffmpeg
ffmpeg_6-full
yt-dlp
],
}:
let
ocamlPackages = ocaml-ng.ocamlPackages_4_14;
in
stdenv.mkDerivation (finalAttrs: {
pname = "liquidsoap";
version = "2.4.2";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
{
lib,
argcomplete,
jinja2,
meraki,
rich,
python3Packages,
fetchPypi,
buildPythonApplication,
pytestCheckHook,
requests-mock,
setuptools,
}:

buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "meraki-cli";
version = "1.5.1";
pyproject = true;
Expand All @@ -30,18 +23,18 @@ buildPythonApplication rec {
"TestUpgrade"
];

build-system = [
build-system = with python3Packages; [
setuptools
];

dependencies = [
dependencies = with python3Packages; [
argcomplete
jinja2
meraki
rich
];

nativeCheckInputs = [
nativeCheckInputs = with python3Packages; [
pytestCheckHook
requests-mock
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,10 @@
copyDesktopItems,
makeDesktopItem,
fetchFromGitHub,
fetchpatch,
cmake,
python3,
qtbase,
qttools,
qtwayland,
qt6,
imagemagick,
wrapQtAppsHook,
gitUpdater,
}:

Expand Down Expand Up @@ -53,7 +49,7 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [
cmake
wrapQtAppsHook
qt6.wrapQtAppsHook
python3
]
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [
Expand All @@ -73,10 +69,10 @@ stdenv.mkDerivation rec {
];

buildInputs = [
qtbase
qttools
qt6.qtbase
qt6.qttools
]
++ lib.optionals stdenv.hostPlatform.isLinux [ qtwayland ];
++ lib.optionals stdenv.hostPlatform.isLinux [ qt6.qtwayland ];

passthru.updateScript = gitUpdater {
rev-prefix = "v";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env nix-shell
#!nix-shell update-pulumi-shell.nix -i bash
#!nix-shell -i bash -p gh
# shellcheck shell=bash
# Bash 3 compatible for Darwin

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{
lib,
buildPythonApplication,
python3Packages,
fetchPypi,
setuptools,
}:

buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "pyznap";
version = "1.6.0";
format = "setuptools";
Expand All @@ -15,7 +14,7 @@ buildPythonApplication rec {
sha256 = "88bf1d6de2c11f14acbdfa01b61eb95c94f95d829ddebdaee3786b64ccb93ae3";
};

propagatedBuildInputs = [
propagatedBuildInputs = with python3Packages; [
setuptools
];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
e2fsprogs,
perl,
pkg-config,
ocamlPackages,
ocaml-ng,
glibc,
}:

Expand All @@ -25,7 +25,7 @@ stdenv.mkDerivation (finalAttrs: {
perl
pkg-config
]
++ (with ocamlPackages; [
++ (with ocaml-ng.ocamlPackages_4_14; [
findlib
ocaml
]);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
lib,
stdenv,
gccStdenv,
fetchurl,
freetype,
libjpeg,
zlib,
}:

stdenv.mkDerivation rec {
gccStdenv.mkDerivation rec {
pname = "swftools";
version = "0.9.2";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{
lib,
buildPythonApplication,
python3Packages,
fetchPypi,
aigpy,
}:

buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "tidal-dl";
version = "2022.10.31.1";
format = "setuptools";
Expand All @@ -15,7 +14,7 @@ buildPythonApplication rec {
hash = "sha256-b2AAsiI3n2/v6HC37fMI/d8UcxZxsWM+fnWvdajHrOg=";
};

propagatedBuildInputs = [ aigpy ];
propagatedBuildInputs = with python3Packages; [ aigpy ];

meta = {
homepage = "https://github.com/yaronzz/Tidal-Media-Downloader";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@
lib,
stdenv,
fetchFromGitHub,
qmake,
qttools,
qtbase,
poppler,
qt5,
flex,
bison,
wrapQtAppsHook,
libsForQt5,
}:

stdenv.mkDerivation {
Expand All @@ -23,15 +20,15 @@ stdenv.mkDerivation {
};

nativeBuildInputs = [
qmake
qttools
qt5.qmake
qt5.qttools
flex
bison
wrapQtAppsHook
qt5.wrapQtAppsHook
];
buildInputs = [
qtbase
poppler
qt5.qtbase
libsForQt5.poppler
];

# src/data/tikzlexer.l:29:10: fatal error: tikzparser.parser.hpp: No such file or directory
Expand Down
Loading
Loading