treewide: gnome3.gtkmm -> gtkmm3

Fix building with `config.allowAliases = false;`.
This commit is contained in:
Samuel Gräfenstein 2021-03-16 18:05:31 +01:00
parent 9517398973
commit 672cd0c8e7
No known key found for this signature in database
GPG key ID: EF76A063F15C63C8
3 changed files with 6 additions and 6 deletions

View file

@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config { lib, stdenv, fetchFromGitHub, cmake, pkg-config
, mpg123, SDL2, gnome3, faad2, pcre , mpg123, SDL2, gtkmm3, faad2, pcre
} : } :
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkg-config ]; nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ faad2 mpg123 SDL2 gnome3.gtkmm pcre ]; buildInputs = [ faad2 mpg123 SDL2 gtkmm3 pcre ];
meta = with lib; { meta = with lib; {
description = "Play DAB/DAB+ from ETI-NI aligned stream"; description = "Play DAB/DAB+ from ETI-NI aligned stream";

View file

@ -6,7 +6,7 @@
, epoxy , epoxy
, fetchFromGitHub , fetchFromGitHub
, glm , glm
, gnome3 , gtkmm3
, lib , lib
, libgit2 , libgit2
, librsvg , librsvg
@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
curl curl
epoxy epoxy
glm glm
gnome3.gtkmm gtkmm3
libgit2 libgit2
librsvg librsvg
libuuid libuuid

View file

@ -1,5 +1,5 @@
{ stdenv, lib, fetchurl, meson, ninja, pkg-config, wayland, git { stdenv, lib, fetchurl, meson, ninja, pkg-config, wayland, git
, alsaLib, gnome3, gtk-layer-shell, pulseaudio, wayfire, wf-config , alsaLib, gtkmm3, gtk-layer-shell, pulseaudio, wayfire, wf-config
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ meson ninja pkg-config wayland ]; nativeBuildInputs = [ meson ninja pkg-config wayland ];
buildInputs = [ buildInputs = [
alsaLib gnome3.gtkmm gtk-layer-shell pulseaudio wayfire wf-config alsaLib gtkmm3 gtk-layer-shell pulseaudio wayfire wf-config
]; ];
mesonFlags = [ "--sysconfdir" "/etc" ]; mesonFlags = [ "--sysconfdir" "/etc" ];