From 93a99aa202173097228053c5b90cd1012e1ec8bc Mon Sep 17 00:00:00 2001 From: Yusuf Bera Ertan Date: Sun, 17 Jul 2022 20:31:05 +0300 Subject: [PATCH] hm yes --- modules/cachix/iohk.nix | 6 +- pkgs-set/overlays/fractal-next.nix | 122 ----------------------------- pkgs-set/pkgs-to-export.nix | 1 + pkgs-set/pkgs/abaddon.nix | 42 ++++++++++ pkgs-set/pkgs/fractal-next.nix | 118 ++++++++++++++++++++++++++++ users/modules/starship/default.nix | 2 +- users/patriot/default.nix | 1 + 7 files changed, 166 insertions(+), 126 deletions(-) delete mode 100644 pkgs-set/overlays/fractal-next.nix create mode 100644 pkgs-set/pkgs/abaddon.nix create mode 100644 pkgs-set/pkgs/fractal-next.nix diff --git a/modules/cachix/iohk.nix b/modules/cachix/iohk.nix index 03e5652..7fe57c5 100644 --- a/modules/cachix/iohk.nix +++ b/modules/cachix/iohk.nix @@ -1,6 +1,6 @@ { nix.settings = { - trusted-public-keys = [ "hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=" ]; - substituters = [ "https://hydra.iohk.io" ]; + trusted-public-keys = ["hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ="]; + substituters = ["https://hydra.iohk.io"]; }; -} \ No newline at end of file +} diff --git a/pkgs-set/overlays/fractal-next.nix b/pkgs-set/overlays/fractal-next.nix deleted file mode 100644 index 2207a61..0000000 --- a/pkgs-set/overlays/fractal-next.nix +++ /dev/null @@ -1,122 +0,0 @@ -let - fractal-next = { - lib, - stdenv, - fetchFromGitLab, - nix-update-script, - meson, - cmake, - ninja, - gettext, - python3, - rustPlatform, - pkg-config, - glib, - libhandy, - libsecret, - libshumate, - gtk4, - gtksourceview5, - libadwaita, - llvmPackages, - glibc, - wayland, - pipewire, - dbus, - openssl, - sqlite, - gst_all_1, - cairo, - gdk-pixbuf, - gspell, - wrapGAppsHook, - desktop-file-utils, - appstream-glib, - }: - stdenv.mkDerivation rec { - pname = "fractal-next"; - version = "1206d4ed12059a298b5d918fd0a77dca034f7084"; - - src = fetchFromGitLab { - domain = "gitlab.gnome.org"; - owner = "GNOME"; - repo = "fractal"; - rev = "1206d4ed12059a298b5d918fd0a77dca034f7084"; - sha256 = "sha256-ioMgVj85BKvsIjBbTAHFN6k5B/H86GLMTgAXK/5ji/k="; - }; - - cargoDeps = rustPlatform.fetchCargoTarball { - inherit src; - name = "${pname}-${version}"; - hash = "sha256-gbTljLIYAanXm1D/tNBGNMlaDatXgZDeSY5pA8s5gog="; - }; - - nativeBuildInputs = [ - appstream-glib # for appstream-util - gettext - meson - ninja - pkg-config - python3 - rustPlatform.rust.cargo - rustPlatform.cargoSetupHook - rustPlatform.rust.rustc - wrapGAppsHook - desktop-file-utils - glib - cmake - ]; - - buildInputs = [ - cairo - dbus - gdk-pixbuf - glib - gspell - gst_all_1.gst-editing-services - gst_all_1.gst-plugins-bad - gst_all_1.gst-plugins-base - (gst_all_1.gst-plugins-good.override { - gtkSupport = true; - }) - gst_all_1.gstreamer - gst_all_1.gst-devtools - gtk4 - gtksourceview5 - libadwaita - wayland - pipewire - libhandy - openssl - libsecret - libshumate - ]; - - # libspa-sys requires this for bindgen - LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib"; - # included by libspa-sys requires - BINDGEN_EXTRA_CLANG_ARGS = "-I${llvmPackages.libclang.lib}/lib/clang/${lib.getVersion llvmPackages.clang}/include -I${glibc.dev}/include"; - - doCheck = false; - - postPatch = '' - patchShebangs build-aux/meson_post_install.py - ''; - - passthru = { - updateScript = nix-update-script { - attrPath = pname; - }; - }; - - meta = with lib; { - description = "Matrix group messaging app"; - homepage = "https://gitlab.gnome.org/GNOME/fractal"; - license = licenses.gpl3; - maintainers = teams.gnome.members ++ (with maintainers; [dtzWill genofire]); - }; - }; -in - _: prev: { - fractal-next = prev.callPackage fractal-next {}; - } diff --git a/pkgs-set/pkgs-to-export.nix b/pkgs-set/pkgs-to-export.nix index bdb6fab..8e018e9 100644 --- a/pkgs-set/pkgs-to-export.nix +++ b/pkgs-set/pkgs-to-export.nix @@ -5,6 +5,7 @@ pkgs: ( "fractal-next" "gamescope" "gaudible" + "abaddon" ] pkgs ) diff --git a/pkgs-set/pkgs/abaddon.nix b/pkgs-set/pkgs/abaddon.nix new file mode 100644 index 0000000..93945d4 --- /dev/null +++ b/pkgs-set/pkgs/abaddon.nix @@ -0,0 +1,42 @@ +{ + stdenv, + fetchFromGitHub, + gtkmm3, + sqlite, + openssl, + curlWithGnuTls, + nlohmann_json, + pkg-config, + cmake, + ... +}: +stdenv.mkDerivation rec { + pname = "abaddon"; + version = "ccf5afbba959068f34897b75afcd25c65c96d79c"; + + src = fetchFromGitHub { + owner = "uowuo"; + repo = pname; + rev = version; + sha256 = "sha256-PKEly2yBM6UKNi/XEEUvbpTmvNSNJM1lUVMovCHgi50="; + fetchSubmodules = true; + }; + + nativeBuildInputs = [ + pkg-config + cmake + ]; + + buildInputs = [ + gtkmm3.dev + curlWithGnuTls.dev + sqlite.dev + openssl + nlohmann_json + ]; + + configurePhase = "mkdir build && cd build && cmake .."; + installPhase = "mkdir -p $out/bin && mv abaddon $out/bin/abaddon"; + + doCheck = false; +} diff --git a/pkgs-set/pkgs/fractal-next.nix b/pkgs-set/pkgs/fractal-next.nix new file mode 100644 index 0000000..9338e96 --- /dev/null +++ b/pkgs-set/pkgs/fractal-next.nix @@ -0,0 +1,118 @@ +{ + lib, + stdenv, + fetchFromGitLab, + nix-update-script, + meson, + cmake, + ninja, + gettext, + python3, + rustPlatform, + pkg-config, + glib, + libhandy, + libsecret, + libshumate, + gtk4, + gtksourceview5, + libadwaita, + llvmPackages, + glibc, + wayland, + pipewire, + dbus, + openssl, + sqlite, + gst_all_1, + cairo, + gdk-pixbuf, + gspell, + wrapGAppsHook, + desktop-file-utils, + appstream-glib, + ... +}: +stdenv.mkDerivation rec { + pname = "fractal-next"; + version = "1206d4ed12059a298b5d918fd0a77dca034f7084"; + + src = fetchFromGitLab { + domain = "gitlab.gnome.org"; + owner = "GNOME"; + repo = "fractal"; + rev = "1206d4ed12059a298b5d918fd0a77dca034f7084"; + sha256 = "sha256-ioMgVj85BKvsIjBbTAHFN6k5B/H86GLMTgAXK/5ji/k="; + }; + + cargoDeps = rustPlatform.fetchCargoTarball { + inherit src; + name = "${pname}-${version}"; + hash = "sha256-gbTljLIYAanXm1D/tNBGNMlaDatXgZDeSY5pA8s5gog="; + }; + + nativeBuildInputs = [ + appstream-glib # for appstream-util + gettext + meson + ninja + pkg-config + python3 + rustPlatform.rust.cargo + rustPlatform.cargoSetupHook + rustPlatform.rust.rustc + wrapGAppsHook + desktop-file-utils + glib + cmake + ]; + + buildInputs = [ + cairo + dbus + gdk-pixbuf + glib + gspell + gst_all_1.gst-editing-services + gst_all_1.gst-plugins-bad + gst_all_1.gst-plugins-base + (gst_all_1.gst-plugins-good.override { + gtkSupport = true; + }) + gst_all_1.gstreamer + gst_all_1.gst-devtools + gtk4 + gtksourceview5 + libadwaita + wayland + pipewire + libhandy + openssl + libsecret + libshumate + ]; + + # libspa-sys requires this for bindgen + LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib"; + # included by libspa-sys requires + BINDGEN_EXTRA_CLANG_ARGS = "-I${llvmPackages.libclang.lib}/lib/clang/${lib.getVersion llvmPackages.clang}/include -I${glibc.dev}/include"; + + doCheck = false; + + postPatch = '' + patchShebangs build-aux/meson_post_install.py + ''; + + passthru = { + updateScript = nix-update-script { + attrPath = pname; + }; + }; + + meta = with lib; { + description = "Matrix group messaging app"; + homepage = "https://gitlab.gnome.org/GNOME/fractal"; + license = licenses.gpl3; + maintainers = teams.gnome.members ++ (with maintainers; [dtzWill genofire]); + }; +} diff --git a/users/modules/starship/default.nix b/users/modules/starship/default.nix index 41b9f0c..ee5695b 100644 --- a/users/modules/starship/default.nix +++ b/users/modules/starship/default.nix @@ -2,7 +2,7 @@ programs.starship = { enable = true; settings = { - format = "$shell$shlvl$nix_shell@ $directory$character"; + format = "$shell$shlvl@ $directory$character"; add_newline = false; character = { success_symbol = "[>](bold green)"; diff --git a/users/patriot/default.nix b/users/patriot/default.nix index 5d56987..1e0b0fd 100644 --- a/users/patriot/default.nix +++ b/users/patriot/default.nix @@ -254,6 +254,7 @@ in { bindkey "$terminfo[kLFT5]" backward-word # makes completions pog zstyle ':completion:*' menu select + ${pkgBin "any-nix-shell"} zsh --info-right | source /dev/stdin ''; loginExtra = '' if [[ "$(tty)" == "/dev/tty1" ]]; then