mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
pkgs: format files with nixfmt
This commit is contained in:
parent
4de5e1505b
commit
18f36a25c5
@ -19,8 +19,7 @@ let
|
|||||||
};
|
};
|
||||||
buildInputs = super.buildInputs ++ [ python310Packages.cython ];
|
buildInputs = super.buildInputs ++ [ python310Packages.cython ];
|
||||||
});
|
});
|
||||||
in
|
in python310Packages.buildPythonApplication rec {
|
||||||
python310Packages.buildPythonApplication rec {
|
|
||||||
pname = "auto-editor";
|
pname = "auto-editor";
|
||||||
version = "22w12a";
|
version = "22w12a";
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
@ -32,13 +31,12 @@ python310Packages.buildPythonApplication rec {
|
|||||||
sha256 = "sha256-mtVL/X6mh+0Paa6yuth9DGbqewsSBopV5/VXoC0DN4M=";
|
sha256 = "sha256-mtVL/X6mh+0Paa6yuth9DGbqewsSBopV5/VXoC0DN4M=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python310Packages; [
|
propagatedBuildInputs = with python310Packages;
|
||||||
numpy
|
[ numpy yt-dlp ] ++ [ av pillow ];
|
||||||
yt-dlp
|
|
||||||
] ++ [ av pillow ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Command-line application for automating video and audio editing with a variety of methods";
|
description =
|
||||||
|
"Command-line application for automating video and audio editing with a variety of methods";
|
||||||
homepage = "https://auto-editor.com/cli";
|
homepage = "https://auto-editor.com/cli";
|
||||||
license = licenses.unlicense;
|
license = licenses.unlicense;
|
||||||
};
|
};
|
||||||
|
@ -15,8 +15,10 @@ let
|
|||||||
doggo = callPackage ./doggo.nix { };
|
doggo = callPackage ./doggo.nix { };
|
||||||
emulsion-palette = callPackage ./emulsion-palette.nix { };
|
emulsion-palette = callPackage ./emulsion-palette.nix { };
|
||||||
gol-c = callPackage ./gol-c.nix { };
|
gol-c = callPackage ./gol-c.nix { };
|
||||||
gnome-search-provider-browser-tabs = callPackage ./gnome-search-provider-browser-tabs.nix { };
|
gnome-search-provider-browser-tabs =
|
||||||
gnome-search-provider-recoll = callPackage ./gnome-search-provider-recoll.nix { };
|
callPackage ./gnome-search-provider-browser-tabs.nix { };
|
||||||
|
gnome-search-provider-recoll =
|
||||||
|
callPackage ./gnome-search-provider-recoll.nix { };
|
||||||
gnome-shell-extension-burn-my-windows =
|
gnome-shell-extension-burn-my-windows =
|
||||||
callPackage ./gnome-shell-extension-burn-my-windows.nix { };
|
callPackage ./gnome-shell-extension-burn-my-windows.nix { };
|
||||||
gnome-extension-manager = callPackage ./gnome-extension-manager.nix { };
|
gnome-extension-manager = callPackage ./gnome-extension-manager.nix { };
|
||||||
@ -39,6 +41,7 @@ let
|
|||||||
pop-launcher = callPackage ./pop-launcher.nix { };
|
pop-launcher = callPackage ./pop-launcher.nix { };
|
||||||
pop-launcher-plugin-duckduckgo-bangs =
|
pop-launcher-plugin-duckduckgo-bangs =
|
||||||
callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };
|
callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };
|
||||||
|
#trex = callPackage ./trex.nix { };
|
||||||
text-engine = callPackage ./text-engine.nix { };
|
text-engine = callPackage ./text-engine.nix { };
|
||||||
tic-80 = callPackage ./tic-80 { };
|
tic-80 = callPackage ./tic-80 { };
|
||||||
segno = libsForQt5.callPackage ./segno.nix { };
|
segno = libsForQt5.callPackage ./segno.nix { };
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, python3Packages, gtk3, glib, gobject-introspection, wrapGAppsHook, webkitgtk }:
|
{ stdenv, lib, fetchFromGitHub, python3Packages, gtk3, glib
|
||||||
|
, gobject-introspection, wrapGAppsHook, webkitgtk }:
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "devdocs-desktop";
|
pname = "devdocs-desktop";
|
||||||
@ -13,10 +14,7 @@ python3Packages.buildPythonApplication rec {
|
|||||||
|
|
||||||
format = "other";
|
format = "other";
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [
|
propagatedBuildInputs = with python3Packages; [ dbus-python pygobject3 ];
|
||||||
dbus-python
|
|
||||||
pygobject3
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [ wrapGAppsHook gobject-introspection ];
|
nativeBuildInputs = [ wrapGAppsHook gobject-introspection ];
|
||||||
buildInputs = [ glib gtk3 webkitgtk ];
|
buildInputs = [ glib gtk3 webkitgtk ];
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, rustPlatform, mkYarnPackage
|
{ stdenv, lib, fetchFromGitHub, rustPlatform, mkYarnPackage, meson, ninja, yarn
|
||||||
, meson, ninja, yarn, zip }:
|
, zip }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "0.1.1";
|
version = "0.1.1";
|
||||||
@ -86,8 +86,6 @@ in lib.recurseIntoAttrs {
|
|||||||
sha256 = "sha256-SULUONFmsnEiWoAWpGOLynSXF032qW+QcYfzxQrAFLQ=";
|
sha256 = "sha256-SULUONFmsnEiWoAWpGOLynSXF032qW+QcYfzxQrAFLQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
mesonFlags = [
|
mesonFlags = [ "-Drelease-bindir=${placeholder "out"}/bin" ];
|
||||||
"-Drelease-bindir=${placeholder "out"}/bin"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,8 @@
|
|||||||
{ stdenv, lib, guile_3_0, guile-config, fetchFromGitLab, autoreconfHook
|
{ stdenv, lib, guile_3_0, guile-config, fetchFromGitLab, autoreconfHook
|
||||||
, pkg-config, texinfo, makeWrapper }:
|
, pkg-config, texinfo, makeWrapper }:
|
||||||
|
|
||||||
let
|
let modules = [ guile-config ];
|
||||||
modules = [ guile-config ];
|
in stdenv.mkDerivation rec {
|
||||||
in
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
pname = "guile-hall";
|
pname = "guile-hall";
|
||||||
version = "0.4.1";
|
version = "0.4.1";
|
||||||
|
|
||||||
@ -26,9 +24,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
GUILE_LOAD_PATH = let
|
GUILE_LOAD_PATH = let
|
||||||
guilePath = [
|
guilePath = [ "\${out}/share/guile/site" ] ++ (lib.concatMap (module: [
|
||||||
"\${out}/share/guile/site"
|
|
||||||
] ++ (lib.concatMap (module: [
|
|
||||||
"${module}/share/guile/site"
|
"${module}/share/guile/site"
|
||||||
"${module}/share/guile"
|
"${module}/share/guile"
|
||||||
"${module}/share"
|
"${module}/share"
|
||||||
@ -36,15 +32,13 @@ stdenv.mkDerivation rec {
|
|||||||
in lib.concatStringsSep ":" guilePath;
|
in lib.concatStringsSep ":" guilePath;
|
||||||
|
|
||||||
GUILE_LOAD_COMPILED_PATH = let
|
GUILE_LOAD_COMPILED_PATH = let
|
||||||
guilePath = [
|
guilePath = [ "\${out}/share/guile/ccache" "\${out}/share/guile/site" ]
|
||||||
"\${out}/share/guile/ccache"
|
++ (lib.concatMap (module: [
|
||||||
"\${out}/share/guile/site"
|
"${module}/share/guile/ccache"
|
||||||
] ++ (lib.concatMap (module: [
|
"${module}/share/guile/site"
|
||||||
"${module}/share/guile/ccache"
|
"${module}/share/guile"
|
||||||
"${module}/share/guile/site"
|
"${module}/share"
|
||||||
"${module}/share/guile"
|
]) modules);
|
||||||
"${module}/share"
|
|
||||||
]) modules);
|
|
||||||
in lib.concatStringsSep ":" guilePath;
|
in lib.concatStringsSep ":" guilePath;
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
@ -12,12 +12,10 @@ stdenv.mkDerivation rec {
|
|||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
makeFlags = [
|
makeFlags = [ "PREFIX=$(out)" ];
|
||||||
"PREFIX=$(out)"
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Like 'tree' but interactive";
|
description = "Like 'tree' but interactive";
|
||||||
homepage = "https://github.com/NikitaIvanovV/ictree";
|
homepage = "https://github.com/NikitaIvanovV/ictree";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, desktop-file-utils, gjs, appstream-glib
|
{ lib, stdenv, fetchFromGitHub, desktop-file-utils, gjs, appstream-glib
|
||||||
, gobject-introspection, gsettings-desktop-schemas, libadwaita, meson
|
, gobject-introspection, gsettings-desktop-schemas, libadwaita, meson, ninja
|
||||||
, ninja, wrapGAppsHook4, glib, libportal }:
|
, wrapGAppsHook4, glib, libportal }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "junction";
|
pname = "junction";
|
||||||
@ -13,23 +13,12 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "sha256-jS4SHh1BB8jk/4EP070X44C4n3GjyCz8ozgK8v5lbqc=";
|
sha256 = "sha256-jS4SHh1BB8jk/4EP070X44C4n3GjyCz8ozgK8v5lbqc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [ meson ninja wrapGAppsHook4 desktop-file-utils ];
|
||||||
meson
|
|
||||||
ninja
|
|
||||||
wrapGAppsHook4
|
|
||||||
desktop-file-utils
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [ gsettings-desktop-schemas ];
|
buildInputs = [ gsettings-desktop-schemas ];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs =
|
||||||
appstream-glib
|
[ appstream-glib gjs gobject-introspection libadwaita glib libportal ];
|
||||||
gjs
|
|
||||||
gobject-introspection
|
|
||||||
libadwaita
|
|
||||||
glib
|
|
||||||
libportal
|
|
||||||
];
|
|
||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
substituteInPlace $out/bin/re.sonny.Junction --replace "#!/usr/bin/env -S gjs" "#!${gjs}/bin/gjs"
|
substituteInPlace $out/bin/re.sonny.Junction --replace "#!/usr/bin/env -S gjs" "#!${gjs}/bin/gjs"
|
||||||
|
@ -11,15 +11,10 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
sha256 = "sha256-HvhYAGtgf2rpzIJwMspGtHcrk4IZxPX1jZbNNwQCJA4=";
|
sha256 = "sha256-HvhYAGtgf2rpzIJwMspGtHcrk4IZxPX1jZbNNwQCJA4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs;
|
||||||
pykka
|
[ pykka requests ] ++ [ mopidy beets ];
|
||||||
requests
|
|
||||||
] ++ [ mopidy beets ];
|
|
||||||
|
|
||||||
checkInputs = with python3.pkgs; [
|
checkInputs = with python3.pkgs; [ pytest pytest-cov ];
|
||||||
pytest
|
|
||||||
pytest-cov
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Mopidy extension for playing music from a Beets collection";
|
description = "Mopidy extension for playing music from a Beets collection";
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
{ lib, fetchgit, python3, mopidy }:
|
{ lib, fetchgit, python3, mopidy }:
|
||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
@ -15,12 +14,8 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
sed -i 's/vext/pykka/' setup.cfg
|
sed -i 's/vext/pykka/' setup.cfg
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs;
|
||||||
pykka
|
[ pykka requests requests_oauthlib pygobject3 ] ++ [ mopidy ];
|
||||||
requests
|
|
||||||
requests_oauthlib
|
|
||||||
pygobject3
|
|
||||||
] ++ [ mopidy ];
|
|
||||||
|
|
||||||
checkInputs = with python3.pkgs; [
|
checkInputs = with python3.pkgs; [
|
||||||
pytest
|
pytest
|
||||||
@ -31,7 +26,8 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Mopidy extension for streaming music from a Funkwhale server";
|
description =
|
||||||
|
"Mopidy extension for streaming music from a Funkwhale server";
|
||||||
homepage = "https://funkwhale.audio";
|
homepage = "https://funkwhale.audio";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
};
|
};
|
||||||
|
@ -11,21 +11,14 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
sha256 = "sha256-kFkqqI9E6cKrRtSO433EpFPy/QYuqaorCEplBCwuXhU=";
|
sha256 = "sha256-kFkqqI9E6cKrRtSO433EpFPy/QYuqaorCEplBCwuXhU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs;
|
||||||
cachetools
|
[ cachetools pykka requests setuptools uritools ] ++ [ mopidy ];
|
||||||
pykka
|
|
||||||
requests
|
|
||||||
setuptools
|
|
||||||
uritools
|
|
||||||
] ++ [ mopidy ];
|
|
||||||
|
|
||||||
checkInputs = with python3.pkgs; [
|
checkInputs = with python3.pkgs; [ pytest pytest-cov ];
|
||||||
pytest
|
|
||||||
pytest-cov
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Mopidy extension for listening to audio from Internet Archive";
|
description =
|
||||||
|
"Mopidy extension for listening to audio from Internet Archive";
|
||||||
homepage = "https://github.com/tkem/mopidy-internetarchive";
|
homepage = "https://github.com/tkem/mopidy-internetarchive";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
};
|
};
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, meson, ninja, json-glib, gtk4, libxml2, gobject-introspection, pkg-config, libadwaita }:
|
{ stdenv, lib, fetchFromGitHub, meson, ninja, json-glib, gtk4, libxml2
|
||||||
|
, gobject-introspection, pkg-config, libadwaita }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "text-engine";
|
pname = "text-engine";
|
||||||
@ -10,19 +11,9 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "sha256-TVQD5sAJJkcs/w4K5B3e+hvfTcoGXunsceada6k/Hjs=";
|
sha256 = "sha256-TVQD5sAJJkcs/w4K5B3e+hvfTcoGXunsceada6k/Hjs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [ gobject-introspection gtk4 meson ninja pkg-config ];
|
||||||
gobject-introspection
|
|
||||||
gtk4
|
|
||||||
meson
|
|
||||||
ninja
|
|
||||||
pkg-config
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [ libadwaita json-glib libxml2 ];
|
||||||
libadwaita
|
|
||||||
json-glib
|
|
||||||
libxml2
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Rich text framework for GTK";
|
description = "Rich text framework for GTK";
|
||||||
|
@ -15,7 +15,8 @@ buildGoModule rec {
|
|||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Self-hosted toolkit for archiving webpages to the Internet Archive";
|
description =
|
||||||
|
"Self-hosted toolkit for archiving webpages to the Internet Archive";
|
||||||
homepage = "https://wabarc.eu.org/";
|
homepage = "https://wabarc.eu.org/";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user