mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
fractal: init at 4.0.0 !
Matrix chat app.
This commit is contained in:
parent
9425ac3202
commit
89851509d5
@ -0,0 +1,43 @@
|
|||||||
|
{ stdenv, fetchurl, fetchFromGitLab, meson, ninja, gettext, cargo, rustc, python3, rustPlatform, pkgconfig, gtksourceview
|
||||||
|
, hicolor-icon-theme, glib, libhandy, gtk3, libsecret, dbus, openssl, sqlite, gst_all_1, wrapGAppsHook }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
version = "4.0.0";
|
||||||
|
name = "fractal-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
domain = "gitlab.gnome.org";
|
||||||
|
owner = "GNOME";
|
||||||
|
repo = "fractal";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "05q47jdgbi5jz01280msb8gxnbsrgf2jvglfm6k40f1xw4wxkrzy";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
meson ninja pkgconfig gettext cargo rustc python3 wrapGAppsHook
|
||||||
|
];
|
||||||
|
buildInputs = [
|
||||||
|
glib gtk3 libhandy dbus openssl sqlite gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-plugins-bad
|
||||||
|
gtksourceview hicolor-icon-theme libsecret
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
patchShebangs scripts/meson_post_install.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Don't use buildRustPackage phases, only use it for rust deps setup
|
||||||
|
configurePhase = null;
|
||||||
|
buildPhase = null;
|
||||||
|
checkPhase = null;
|
||||||
|
installPhase = null;
|
||||||
|
|
||||||
|
cargoSha256 = "0hlvdcdzkggc2adggmlxz0yxigwp3320wfav77gddlvfip1f90sw";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Matrix group messaging app";
|
||||||
|
homepage = https://gitlab.gnome.org/GNOME/fractal;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ dtzWill ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -17230,6 +17230,8 @@ in
|
|||||||
|
|
||||||
fomp = callPackage ../applications/audio/fomp { };
|
fomp = callPackage ../applications/audio/fomp { };
|
||||||
|
|
||||||
|
fractal = callPackage ../applications/networking/instant-messengers/fractal { };
|
||||||
|
|
||||||
freecad = callPackage ../applications/graphics/freecad { mpi = openmpi; };
|
freecad = callPackage ../applications/graphics/freecad { mpi = openmpi; };
|
||||||
|
|
||||||
freemind = callPackage ../applications/misc/freemind { };
|
freemind = callPackage ../applications/misc/freemind { };
|
||||||
|
Loading…
Reference in New Issue
Block a user