119 lines
2.3 KiB
Nix
119 lines
2.3 KiB
Nix
|
{
|
||
|
lib,
|
||
|
python3Packages,
|
||
|
fetchFromGitHub,
|
||
|
meson,
|
||
|
ninja,
|
||
|
pkg-config,
|
||
|
gobject-introspection,
|
||
|
blueprint-compiler,
|
||
|
wrapGAppsHook4,
|
||
|
desktop-file-utils,
|
||
|
libadwaita,
|
||
|
gtksourceview5,
|
||
|
webkitgtk_6_0,
|
||
|
gcr_4,
|
||
|
gdk-pixbuf,
|
||
|
}:
|
||
|
python3Packages.buildPythonApplication rec {
|
||
|
pname = "devtoolbox";
|
||
|
version = "1.2";
|
||
|
pyproject = false; # uses meson
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "aleiepure";
|
||
|
repo = "devtoolbox";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-tSH7H2Y/+8EpuM4+Fa0iL/pSJSVtFDXlO2w/xwpzps0=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
meson
|
||
|
ninja
|
||
|
pkg-config
|
||
|
gobject-introspection
|
||
|
blueprint-compiler
|
||
|
wrapGAppsHook4
|
||
|
desktop-file-utils
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
libadwaita
|
||
|
gtksourceview5
|
||
|
webkitgtk_6_0
|
||
|
gcr_4
|
||
|
gdk-pixbuf
|
||
|
];
|
||
|
|
||
|
dependencies = with python3Packages; [
|
||
|
pygobject3
|
||
|
ruamel-yaml
|
||
|
lxml
|
||
|
python-crontab
|
||
|
jwt
|
||
|
jsonschema
|
||
|
pytz
|
||
|
tzlocal
|
||
|
python-lorem
|
||
|
uuid6
|
||
|
textstat
|
||
|
markdown2
|
||
|
daltonlens
|
||
|
asn1crypto
|
||
|
qrcode
|
||
|
sqlparse
|
||
|
jsbeautifier
|
||
|
cssbeautifier
|
||
|
humanize
|
||
|
croniter
|
||
|
python-dateutil
|
||
|
rcssmin
|
||
|
rjsmin
|
||
|
];
|
||
|
|
||
|
dontWrapGApps = true;
|
||
|
|
||
|
# Contains an unusable devtoolbox-run-script
|
||
|
postInstall = ''
|
||
|
rm -r $out/devtoolbox
|
||
|
'';
|
||
|
|
||
|
preFixup = ''
|
||
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
description = "Development tools at your fingertips";
|
||
|
longDescription = ''
|
||
|
If you're tired of endlessly looking online for the right
|
||
|
tool, or to find again that website of which you don't
|
||
|
recall the name to do a quick conversion, this is the
|
||
|
right app for you. This is a collection of powerful yet
|
||
|
simple-to-use tools and utilities to solve the most common
|
||
|
daily development problems:
|
||
|
- JSON to YAML converter and vice-versa
|
||
|
- CRON expressions parser
|
||
|
- Formatters for common languages
|
||
|
- Hash generators
|
||
|
- Regex tester
|
||
|
- Markdown Previewer
|
||
|
- Image converters
|
||
|
- Much more...
|
||
|
'';
|
||
|
homepage = "https://github.com/aleiepure/devtoolbox";
|
||
|
license = with lib.licenses; [
|
||
|
gpl3Plus
|
||
|
cc0
|
||
|
lgpl3Only
|
||
|
mit
|
||
|
unlicense
|
||
|
];
|
||
|
mainProgram = "devtoolbox";
|
||
|
maintainers = with lib.maintainers; [
|
||
|
aleksana
|
||
|
aucub
|
||
|
];
|
||
|
platforms = lib.platforms.linux;
|
||
|
};
|
||
|
}
|