imaginer: init at 0.1.3 (#230079)
This commit is contained in:
parent
fdd0467c34
commit
1f5554c227
2 changed files with 70 additions and 0 deletions
68
pkgs/applications/misc/imaginer/default.nix
Normal file
68
pkgs/applications/misc/imaginer/default.nix
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, appstream-glib
|
||||||
|
, blueprint-compiler
|
||||||
|
, desktop-file-utils
|
||||||
|
, fetchFromGitHub
|
||||||
|
, gettext
|
||||||
|
, glib
|
||||||
|
, gobject-introspection
|
||||||
|
, libadwaita
|
||||||
|
, libsoup_3
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkg-config
|
||||||
|
, python3Packages
|
||||||
|
, wrapGAppsHook4
|
||||||
|
}:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication rec {
|
||||||
|
pname = "imaginer";
|
||||||
|
version = "0.1.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ImaginerApp";
|
||||||
|
repo = "Imaginer";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-x1ZnmfaMfxnITiuFDlMPfTU8KZbd1ME9jDevnlsrbJs=";
|
||||||
|
};
|
||||||
|
|
||||||
|
format = "other";
|
||||||
|
dontWrapGApps = true;
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
appstream-glib
|
||||||
|
blueprint-compiler
|
||||||
|
desktop-file-utils
|
||||||
|
gettext
|
||||||
|
glib
|
||||||
|
gobject-introspection
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkg-config
|
||||||
|
wrapGAppsHook4
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libadwaita
|
||||||
|
libsoup_3
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3Packages; [
|
||||||
|
openai
|
||||||
|
pillow
|
||||||
|
pygobject3
|
||||||
|
requests
|
||||||
|
];
|
||||||
|
|
||||||
|
preFixup = ''
|
||||||
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/ImaginerApp/Imaginer";
|
||||||
|
description = "Imaginer with AI";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ _0xMRTT ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -38728,6 +38728,8 @@ with pkgs;
|
||||||
|
|
||||||
logtop = callPackage ../tools/misc/logtop { };
|
logtop = callPackage ../tools/misc/logtop { };
|
||||||
|
|
||||||
|
imaginer = callPackage ../applications/misc/imaginer { };
|
||||||
|
|
||||||
igraph = callPackage ../development/libraries/igraph { };
|
igraph = callPackage ../development/libraries/igraph { };
|
||||||
|
|
||||||
igprof = callPackage ../development/tools/misc/igprof { };
|
igprof = callPackage ../development/tools/misc/igprof { };
|
||||||
|
|
Loading…
Reference in a new issue