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,37 @@
{
lib,
stdenv,
fetchurl,
python3,
asciidoc,
}:
stdenv.mkDerivation rec {
pname = "eweb";
version = "9.10";
src = fetchurl {
url = "mirror://sourceforge/project/eweb/${pname}-${version}.tar.bz2";
sha256 = "1xy7vm2sj5q6s620fm25klmnwnz9xkrxmx4q2f8h6c85ydisayd5";
};
buildInputs = [
python3
asciidoc
];
installPhase = ''
install -d $out/bin $out/share/doc/${pname}-${version}
cp etangle.py $out/bin
cp etangle.w etangle.html $out/share/doc/${pname}-${version}
'';
meta = with lib; {
homepage = "https://eweb.sourceforge.net/";
description = "Asciidoc-based literate programming tool, written in Python";
mainProgram = "etangle.py";
platforms = platforms.linux;
license = licenses.gpl3Plus;
maintainers = [ ];
};
}

View File

@@ -0,0 +1,81 @@
{
lib,
rustPlatform,
fetchFromGitHub,
installShellFiles,
pkg-config,
wrapGAppsHook3,
gtk3,
librsvg,
gtk-layer-shell,
stdenv,
libdbusmenu-gtk3,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
pname = "eww";
version = "0.6.0-unstable-2025-06-30";
src = fetchFromGitHub {
owner = "elkowar";
repo = "eww";
rev = "fddb4a09b107237819e661151e007b99b5cab36d";
hash = "sha256-PJW4LvW9FmkG9HyUtgXOq7MDjYtBc/iJuOxyf29nD0Y=";
};
cargoHash = "sha256-Kf99eojqXvdbZ3eRS8GBgyLYNpZKJGIJtsOsvhhSVDk=";
nativeBuildInputs = [
installShellFiles
pkg-config
wrapGAppsHook3
];
buildInputs = [
gtk3
gtk-layer-shell
libdbusmenu-gtk3
librsvg
];
cargoBuildFlags = [
"--bin"
"eww"
];
cargoTestFlags = cargoBuildFlags;
# requires unstable rust features
RUSTC_BOOTSTRAP = 1;
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
installShellCompletion --cmd eww \
--bash <($out/bin/eww shell-completions --shell bash) \
--fish <($out/bin/eww shell-completions --shell fish) \
--zsh <($out/bin/eww shell-completions --shell zsh)
'';
passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };
meta = {
description = "Widget system made in Rust to create widgets for any WM";
longDescription = ''
Eww (ElKowar's Wacky Widgets) is a widget system made in Rust which lets
you create your own widgets similarly to how you can in AwesomeWM.
The key difference: It is independent of your window manager!
It can be configured in yuck and themed using CSS, is very easy
to customize and provides all the flexibility you need!
'';
homepage = "https://github.com/elkowar/eww";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
coffeeispower
figsoda
lom
w-lfchen
];
mainProgram = "eww";
broken = stdenv.hostPlatform.isDarwin;
};
}