Merge pull request #112147 from mkg20001/cinnamon-upgrade

authored by

Maciej Krüger and committed by
GitHub
5f8839fd 56ba373d

+158 -125
+10 -25
pkgs/desktops/cinnamon/cinnamon-common/default.nix
··· 1 1 { atk 2 - , autoreconfHook 3 2 , cacert 4 3 , fetchpatch 5 4 , dbus ··· 42 41 , pciutils 43 42 , timezonemap 44 43 , libnma 44 + , meson 45 + , ninja 46 + , gst_all_1 45 47 }: 46 48 47 - let 48 - libcroco = callPackage ./libcroco.nix { }; 49 - in 50 49 stdenv.mkDerivation rec { 51 50 pname = "cinnamon-common"; 52 - version = "4.6.1"; 51 + version = "4.8.6"; 53 52 54 53 src = fetchFromGitHub { 55 54 owner = "linuxmint"; 56 55 repo = "cinnamon"; 57 56 rev = version; 58 - sha256 = "149lhg953fa0glm250f76z2jzyaabh97jxiqkjnqvsk6bjk1d0bw"; 57 + hash = "sha256-4DMXQYH1/RjLhgrn55I7Vkk6+gGsR+OVmiwxVHUIyro="; 59 58 }; 60 59 61 60 patches = [ 62 - # remove dbus-glib 63 - (fetchpatch { 64 - url = "https://github.com/linuxmint/cinnamon/commit/ce99760fa15c3de2e095b9a5372eeaca646fbed1.patch"; 65 - sha256 = "0p2sbdi5w7sgblqbgisb6f8lcj1syzq5vlk0ilvwaqayxjylg8gz"; 66 - }) 67 - (fetchpatch { 68 - url = "https://leigh123linux.fedorapeople.org/pub/patches/new_cjs.patch"; 69 - sha256 = "07biv3vkbn3jzijbdrxcw73p8xz2djbsax014mlkvmryrmys0rg4"; 70 - }) 61 + ./use-sane-install-dir.patch 62 + ./libdir.patch 71 63 ]; 72 64 73 65 buildInputs = [ ··· 84 76 glib 85 77 gtk3 86 78 json-glib 87 - libcroco 88 79 libsoup 89 80 libstartup_notification 90 81 libXtst ··· 94 85 polkit 95 86 libxml2 96 87 libgnomekbd 88 + gst_all_1.gstreamer 97 89 98 90 # bindings 99 91 cairo ··· 114 106 115 107 nativeBuildInputs = [ 116 108 gobject-introspection 117 - autoreconfHook 109 + meson 110 + ninja 118 111 wrapGAppsHook 119 112 intltool 120 113 gtk-doc 121 114 ]; 122 115 123 - autoreconfPhase = '' 124 - GTK_DOC_CHECK=false NOCONFIGURE=1 bash ./autogen.sh 125 - ''; 126 - 127 116 configureFlags = [ "--disable-static" "--with-ca-certificates=${cacert}/etc/ssl/certs/ca-bundle.crt" "--with-libxml=${libxml2.dev}/include/libxml2" "--enable-gtk-doc=no" ]; 128 117 129 118 postPatch = '' 130 - substituteInPlace src/Makefile.am \ 131 - --replace "\$(libdir)/muffin" "${muffin}/lib/muffin" 132 - patchShebangs autogen.sh 133 - 134 119 find . -type f -exec sed -i \ 135 120 -e s,/usr/share/cinnamon,$out/share/cinnamon,g \ 136 121 -e s,/usr/share/locale,/run/current-system/sw/share/locale,g \
-33
pkgs/desktops/cinnamon/cinnamon-common/libcroco.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, libxml2, glib, gnome3 }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "libcroco"; 5 - version = "0.6.13"; 6 - 7 - src = fetchurl { 8 - url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 9 - sha256 = "1m110rbj5d2raxcdp4iz0qp172284945awrsbdlq99ksmqsc4zkn"; 10 - }; 11 - 12 - outputs = [ "out" "dev" ]; 13 - outputBin = "dev"; 14 - 15 - configureFlags = lib.optional stdenv.isDarwin "--disable-Bsymbolic"; 16 - 17 - nativeBuildInputs = [ pkg-config ]; 18 - buildInputs = [ libxml2 glib ]; 19 - 20 - passthru = { 21 - updateScript = gnome3.updateScript { 22 - packageName = pname; 23 - }; 24 - }; 25 - 26 - meta = with lib; { 27 - description = "GNOME CSS2 parsing and manipulation toolkit"; 28 - homepage = https://gitlab.gnome.org/GNOME/libcroco; 29 - license = licenses.lgpl2; 30 - platforms = platforms.unix; 31 - }; 32 - } 33 -
+25
pkgs/desktops/cinnamon/cinnamon-common/libdir.patch
··· 1 + From 1c99ff9b042d77d97a0841c78fceb7cfbf41aa8b Mon Sep 17 00:00:00 2001 2 + From: =?UTF-8?q?Maciej=20Kr=C3=BCger?= <mkg20001@gmail.com> 3 + Date: Sun, 28 Feb 2021 05:58:09 +0100 4 + Subject: [PATCH] libdir patch 5 + 6 + --- 7 + meson.build | 2 +- 8 + 1 file changed, 1 insertion(+), 1 deletion(-) 9 + 10 + diff --git a/meson.build b/meson.build 11 + index 3c1e9a4f..a77d9b3c 100644 12 + --- a/meson.build 13 + +++ b/meson.build 14 + @@ -14,7 +14,7 @@ includedir = get_option('includedir') 15 + libexecdir = get_option('libexecdir') 16 + desktopdir = join_paths(datadir, 'applications') 17 + schemadir = join_paths(datadir, 'glib-2.0', 'schemas') 18 + -pkglibdir = join_paths(libdir, meson.project_name().to_lower()) 19 + +pkglibdir = libdir 20 + servicedir = join_paths(datadir, 'dbus-1', 'services') 21 + pkgdatadir = join_paths(datadir, meson.project_name().to_lower()) 22 + po_dir = join_paths(meson.source_root(), 'po') 23 + -- 24 + 2.30.0 25 +
+33
pkgs/desktops/cinnamon/cinnamon-common/use-sane-install-dir.patch
··· 1 + From f7e802959d7a5c217ed574cab30404fc769f174d Mon Sep 17 00:00:00 2001 2 + From: =?UTF-8?q?Maciej=20Kr=C3=BCger?= <mkg20001@gmail.com> 3 + Date: Sat, 6 Feb 2021 14:26:26 +0100 4 + Subject: [PATCH] use sane install dir 5 + 6 + --- 7 + meson.build | 10 ++++++++-- 8 + 1 file changed, 8 insertions(+), 2 deletions(-) 9 + 10 + diff --git a/meson.build b/meson.build 11 + index bd803f20..3c1e9a4f 100644 12 + --- a/meson.build 13 + +++ b/meson.build 14 + @@ -127,8 +127,14 @@ configure_file( 15 + ) 16 + 17 + install_subdir( 18 + - 'files', 19 + - install_dir: '/', 20 + + 'files/usr', 21 + + install_dir: get_option('prefix'), 22 + + strip_directory: true, 23 + +) 24 + + 25 + +install_subdir( 26 + + 'files/etc', 27 + + install_dir: join_paths(get_option('prefix'), 'etc'), 28 + strip_directory: true, 29 + ) 30 + 31 + -- 32 + 2.30.0 33 +
+14 -15
pkgs/desktops/cinnamon/cinnamon-control-center/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchFromGitHub 3 3 , pkg-config 4 - , autoreconfHook 5 4 , glib 6 5 , gettext 7 6 , cinnamon-desktop 8 - , intltool 9 7 , gtk3 10 8 , libnotify 11 9 , libxml2 ··· 20 18 , libxklavier 21 19 , networkmanager 22 20 , libwacom 23 - , libtool 21 + , gnome3 24 22 , wrapGAppsHook 25 23 , tzdata 26 24 , glibc ··· 28 26 , modemmanager 29 27 , xorg 30 28 , gdk-pixbuf 29 + , meson 30 + , ninja 31 31 }: 32 32 33 33 stdenv.mkDerivation rec { 34 34 pname = "cinnamon-control-center"; 35 - version = "4.6.2"; 35 + version = "4.8.2"; 36 36 37 37 src = fetchFromGitHub { 38 38 owner = "linuxmint"; 39 39 repo = pname; 40 40 rev = version; 41 - sha256 = "0fbgi2r2xikpa04k431qq9akngi9akyflq1kcks8f095qs5gsana"; 41 + hash = "sha256-vALThDY0uN9bV7b1fga3MK7b2/l5uL33+B2x6oSLPRE="; 42 42 }; 43 43 44 44 buildInputs = [ ··· 70 70 ./panels/datetime/tz.h:34:# define TZ_DATA_FILE "/usr/share/lib/zoneinfo/tab/zone_sun.tab" */ 71 71 72 72 postPatch = '' 73 - patchShebangs ./autogen.sh 74 73 sed 's|TZ_DIR "/usr/share/zoneinfo/"|TZ_DIR "${tzdata}/share/zoneinfo/"|g' -i ./panels/datetime/test-timezone.c 75 74 sed 's|TZ_DATA_FILE "/usr/share/zoneinfo/zone.tab"|TZ_DATA_FILE "${tzdata}/share/zoneinfo/zone.tab"|g' -i ./panels/datetime/tz.h 76 75 sed 's|"/usr/share/i18n/locales/"|"${glibc}/share/i18n/locales/"|g' -i panels/datetime/test-endianess.c 77 - ''; 78 - 79 - autoreconfPhase = '' 80 - NOCONFIGURE=1 bash ./autogen.sh 81 76 ''; 82 77 83 78 # it needs to have access to that file, otherwise we can't run tests after build ··· 87 82 ln -s $PWD/panels/datetime $out/share/cinnamon-control-center/ 88 83 ''; 89 84 85 + mesonFlags = [ 86 + "-Dc_args=-I${glib.dev}/include/gio-unix-2.0" 87 + ]; 88 + 90 89 preInstall = '' 91 - rm -rfv $out 90 + rm -r $out 92 91 ''; 93 92 94 - doCheck = true; 93 + # the only test is wacom-calibrator and it seems to need an xserver and prob more services aswell 94 + doCheck = false; 95 95 96 96 nativeBuildInputs = [ 97 97 pkg-config 98 - autoreconfHook 98 + meson 99 + ninja 99 100 wrapGAppsHook 100 101 gettext 101 - intltool 102 - libtool 103 102 ]; 104 103 105 104 meta = with lib; {
+2 -2
pkgs/desktops/cinnamon/cinnamon-desktop/default.nix
··· 17 17 18 18 stdenv.mkDerivation rec { 19 19 pname = "cinnamon-desktop"; 20 - version = "4.6.4"; 20 + version = "4.8.1"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "linuxmint"; 24 24 repo = pname; 25 25 rev = version; 26 - sha256 = "08z5hgc6dwdp9fczm75axwh8q9665iz4y2lxp92xp62r3k0v9fvd"; 26 + hash = "sha256-FLruY1lxzB3iJ/So3jSjrbv9e8VoN/0+U2YDXju/u3E="; 27 27 }; 28 28 29 29 outputs = [ "out" "dev" ];
+2 -2
pkgs/desktops/cinnamon/cinnamon-menus/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "cinnamon-menus"; 13 - version = "4.6.1"; 13 + version = "4.8.2"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "linuxmint"; 17 17 repo = pname; 18 18 rev = version; 19 - sha256 = "1qdaql4mknhzvl2qi1pyw4c820lqb7lg07gblh0wzfk4f7h8hddx"; 19 + hash = "sha256-9VSrqCjC8U3js1gqjl5QFctWYECATxN+AdfMdHLxYUY="; 20 20 }; 21 21 22 22 buildInputs = [
+2 -10
pkgs/desktops/cinnamon/cinnamon-screensaver/default.nix
··· 23 23 , xapps 24 24 , xorg 25 25 , iso-flags-png-320x420 26 - , fetchpatch 27 26 }: 28 27 29 28 stdenv.mkDerivation rec { 30 29 pname = "cinnamon-screensaver"; 31 - version = "4.6.0"; 30 + version = "4.8.1"; 32 31 33 32 src = fetchFromGitHub { 34 33 owner = "linuxmint"; 35 34 repo = pname; 36 35 rev = version; 37 - sha256 = "068lh6wcmznfyvny7hx83q2rf4j96b6mv4a5v79y02k9110m7bsm"; 36 + hash = "sha256-gvSGxSYKnRqJhj2unRYRHp6qGw/O9SxKPzhw5xjCSSQ="; 38 37 }; 39 - 40 - patches = [ 41 - (fetchpatch { 42 - url = "https://github.com/linuxmint/cinnamon-screensaver/pull/349/commits/4a9e5715f406bf2ca1aacddd5fd8f830102a423c.patch"; 43 - sha256 = "0fmkmskry4c88zcw0i8vsmh6q14k3m937hqi77p5xi1p93imr46y"; 44 - }) 45 - ]; 46 38 47 39 nativeBuildInputs = [ 48 40 pkg-config
+2 -2
pkgs/desktops/cinnamon/cinnamon-session/default.nix
··· 27 27 28 28 stdenv.mkDerivation rec { 29 29 pname = "cinnamon-session"; 30 - version = "4.6.2"; 30 + version = "4.8.0"; 31 31 32 32 src = fetchFromGitHub { 33 33 owner = "linuxmint"; 34 34 repo = pname; 35 35 rev = version; 36 - sha256 = "133vpgs0dqr16pvx5wyxhfcargn9wl14z0q99m2pn93hf6zycmsv"; 36 + hash = "sha256-lrwR8VSdPzHoc9MeBEQPbVfWNhPZDJ2wYizKSVpobmk="; 37 37 }; 38 38 39 39 patches = [
+15 -14
pkgs/desktops/cinnamon/cinnamon-settings-daemon/csd-backlight-helper-fix.patch
··· 1 - From 6d71bf9764fb81d437678a603826167850bbf453 Mon Sep 17 00:00:00 2001 1 + From 7fa408ebd72c9f1ff7ff4e9d7f4a811465a8a41b Mon Sep 17 00:00:00 2001 2 2 From: =?UTF-8?q?Maciej=20Kr=C3=BCger?= <mkg20001@gmail.com> 3 3 Date: Tue, 21 Jan 2020 03:19:28 +0100 4 4 Subject: [PATCH] fix: use an impure path to csd-backlight-helper to fix ··· 6 6 7 7 --- 8 8 plugins/power/csd-power-manager.c | 4 ++-- 9 - .../org.cinnamon.settings-daemon.plugins.power.policy.in.in | 2 +- 9 + .../org.cinnamon.settings-daemon.plugins.power.policy.in | 2 +- 10 10 2 files changed, 3 insertions(+), 3 deletions(-) 11 11 12 12 diff --git a/plugins/power/csd-power-manager.c b/plugins/power/csd-power-manager.c 13 - index b24c456..212c47e 100755 13 + index 33f4489..84dd98b 100644 14 14 --- a/plugins/power/csd-power-manager.c 15 15 +++ b/plugins/power/csd-power-manager.c 16 - @@ -2519,7 +2519,7 @@ backlight_helper_get_value (const gchar *argument, CsdPowerManager* manager, 16 + @@ -2529,7 +2529,7 @@ backlight_helper_get_value (const gchar *argument, CsdPowerManager* manager, 17 17 #endif 18 - 18 + 19 19 /* get the data */ 20 20 - command = g_strdup_printf (LIBEXECDIR "/csd-backlight-helper --%s %s", 21 21 + command = g_strdup_printf ("/run/current-system/sw/bin/cinnamon-settings-daemon/csd-backlight-helper --%s %s", 22 22 argument, 23 23 manager->priv->backlight_helper_preference_args); 24 24 ret = g_spawn_command_line_sync (command, 25 - @@ -2609,7 +2609,7 @@ backlight_helper_set_value (const gchar *argument, 25 + @@ -2619,7 +2619,7 @@ backlight_helper_set_value (const gchar *argument, 26 26 #endif 27 - 27 + 28 28 /* get the data */ 29 29 - command = g_strdup_printf ("pkexec " LIBEXECDIR "/csd-backlight-helper --%s %i %s", 30 30 + command = g_strdup_printf ("pkexec " "/run/current-system/sw/bin/cinnamon-settings-daemon/csd-backlight-helper --%s %i %s", 31 31 argument, value, 32 32 manager->priv->backlight_helper_preference_args); 33 33 ret = g_spawn_command_line_sync (command, 34 - diff --git a/plugins/power/org.cinnamon.settings-daemon.plugins.power.policy.in.in b/plugins/power/org.cinnamon.settings-daemon.plugins.power.policy.in.in 35 - index 2c44e62..c0a2348 100755 36 - --- a/plugins/power/org.cinnamon.settings-daemon.plugins.power.policy.in.in 37 - +++ b/plugins/power/org.cinnamon.settings-daemon.plugins.power.policy.in.in 34 + diff --git a/plugins/power/org.cinnamon.settings-daemon.plugins.power.policy.in b/plugins/power/org.cinnamon.settings-daemon.plugins.power.policy.in 35 + index 504f017..3569e8c 100644 36 + --- a/plugins/power/org.cinnamon.settings-daemon.plugins.power.policy.in 37 + +++ b/plugins/power/org.cinnamon.settings-daemon.plugins.power.policy.in 38 38 @@ -25,7 +25,7 @@ 39 39 <allow_inactive>no</allow_inactive> 40 40 <allow_active>yes</allow_active> ··· 42 42 - <annotate key="org.freedesktop.policykit.exec.path">@libexecdir@/csd-backlight-helper</annotate> 43 43 + <annotate key="org.freedesktop.policykit.exec.path">/run/current-system/sw/bin/cinnamon-settings-daemon/csd-backlight-helper</annotate> 44 44 </action> 45 + 46 + </policyconfig> 47 + -- 48 + 2.30.0 45 49 46 - </policyconfig> 47 - -- 48 - 2.24.1
+12 -9
pkgs/desktops/cinnamon/cinnamon-settings-daemon/default.nix
··· 1 1 { fetchFromGitHub 2 - , autoconf-archive 3 - , autoreconfHook 4 2 , cinnamon-desktop 5 3 , colord 6 4 , glib 7 5 , gsettings-desktop-schemas 8 6 , gtk3 9 - , intltool 10 7 , lcms2 11 8 , libcanberra-gtk3 12 9 , libgnomekbd ··· 29 26 , tzdata 30 27 , nss 31 28 , libgudev 29 + , meson 30 + , ninja 31 + , dbus 32 + , dbus-glib 32 33 }: 33 34 34 35 stdenv.mkDerivation rec { 35 36 pname = "cinnamon-settings-daemon"; 36 - version = "4.6.4"; 37 + version = "4.8.5"; 37 38 38 39 /* csd-power-manager.c:50:10: fatal error: csd-power-proxy.h: No such file or directory 39 40 #include "csd-power-proxy.h" ··· 48 49 owner = "linuxmint"; 49 50 repo = pname; 50 51 rev = version; 51 - sha256 = "1xcjzjfwnzvkv9jiyw8adsjyhz92almzhyfwb91115774zgqnb7m"; 52 + hash = "sha256-PAWVTjGFs8yKXgNQ2ucDnEDS+n7bp2n3lhGl9gHXfdQ="; 52 53 }; 53 54 54 55 patches = [ 55 56 ./csd-backlight-helper-fix.patch 57 + ./use-sane-install-dir.patch 56 58 ]; 57 59 58 - NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0"; # TODO: https://github.com/NixOS/nixpkgs/issues/36468 60 + mesonFlags = [ "-Dc_args=-I${glib.dev}/include/gio-unix-2.0" ]; 59 61 60 62 buildInputs = [ 61 63 cinnamon-desktop ··· 85 87 fontconfig 86 88 nss 87 89 libgudev 90 + dbus 91 + dbus-glib 88 92 ]; 89 93 90 94 nativeBuildInputs = [ 91 - autoconf-archive 92 - autoreconfHook 95 + meson 96 + ninja 93 97 wrapGAppsHook 94 - intltool 95 98 pkg-config 96 99 ]; 97 100
+27
pkgs/desktops/cinnamon/cinnamon-settings-daemon/use-sane-install-dir.patch
··· 1 + From be57c01e6595a8e08ecc17de298e30640b532f11 Mon Sep 17 00:00:00 2001 2 + From: =?UTF-8?q?Maciej=20Kr=C3=BCger?= <mkg20001@gmail.com> 3 + Date: Sat, 6 Feb 2021 13:55:03 +0100 4 + Subject: [PATCH] use sane install-dir 5 + 6 + --- 7 + meson.build | 4 ++-- 8 + 1 file changed, 2 insertions(+), 2 deletions(-) 9 + 10 + diff --git a/meson.build b/meson.build 11 + index 0e11d50..54f4637 100644 12 + --- a/meson.build 13 + +++ b/meson.build 14 + @@ -156,8 +156,8 @@ subdir('cinnamon-settings-daemon') 15 + subdir('plugins') 16 + 17 + install_subdir( 18 + - 'files', 19 + - install_dir: '/', 20 + + 'files/usr', 21 + + install_dir: get_option('prefix'), 22 + strip_directory: true, 23 + ) 24 + 25 + -- 26 + 2.30.0 27 +
+4 -3
pkgs/desktops/cinnamon/cinnamon-translations/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , fetchFromGitHub 3 4 , gettext 4 5 }: 5 6 6 7 stdenv.mkDerivation rec { 7 8 pname = "cinnamon-translations"; 8 - version = "4.6.2"; 9 + version = "4.8.3"; 9 10 10 11 src = fetchFromGitHub { 11 12 owner = "linuxmint"; 12 13 repo = pname; 13 14 rev = version; 14 - sha256 = "0zaghha62ibhg3rir6mrfy1z3v7p7v83b6glhmj9s51nxd86fyv6"; 15 + hash = "sha256-o/JFfwloXLUOy9YQzHtMCuzK7yBp/G43VS/RguxiTPY="; 15 16 }; 16 17 17 18 nativeBuildInputs = [
+6 -5
pkgs/desktops/cinnamon/cjs/default.nix
··· 2 2 , fetchFromGitHub 3 3 , gobject-introspection 4 4 , pkg-config 5 - , lib, stdenv 5 + , lib 6 + , stdenv 6 7 , wrapGAppsHook 7 8 , python3 8 9 , cairo ··· 27 28 }: 28 29 29 30 stdenv.mkDerivation rec { 30 - pname = "cjs-unstable"; 31 - version = "2020-10-19"; 31 + pname = "cjs"; 32 + version = "4.8.2"; 32 33 33 34 src = fetchFromGitHub { 34 35 owner = "linuxmint"; 35 36 repo = "cjs"; 36 - rev = "befc11adb5ba10681464e6fa81b1a79f108ce61c"; 37 - hash = "sha256-F2t8uKV2r29NxX2+3mYp5x1bug2lwihJZTK1dSS8rPg="; 37 + rev = version; 38 + hash = "sha256-6+zlWL0DmyP+RFp1ECA4XGbgYUlsMqqyTd6z46w99Ug="; 38 39 }; 39 40 40 41 outputs = [ "out" "dev" ];
+2 -2
pkgs/desktops/cinnamon/muffin/default.nix
··· 35 35 36 36 stdenv.mkDerivation rec { 37 37 pname = "muffin"; 38 - version = "4.6.3"; 38 + version = "4.8.1"; 39 39 40 40 src = fetchFromGitHub { 41 41 owner = "linuxmint"; 42 42 repo = pname; 43 43 rev = version; 44 - sha256 = "1p8irzf20wari1id5rfx5sypywih1jsrmn0f83zlyhc5fxg02r5p"; 44 + hash = "sha256-zRW+hnoaKKTe4zIJpY1D0Ahc8k5zRbvYBF5Y4vZ6Rbs="; 45 45 }; 46 46 47 47 buildInputs = [
+2 -2
pkgs/desktops/cinnamon/nemo/default.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "nemo"; 23 - version = "4.6.5"; 23 + version = "4.8.4"; 24 24 25 25 # TODO: add plugins support (see https://github.com/NixOS/nixpkgs/issues/78327) 26 26 ··· 28 28 owner = "linuxmint"; 29 29 repo = pname; 30 30 rev = version; 31 - sha256 = "04rgdph9pxdj5wzzv2i0pgyhg3s74nh9jf1ry9z6v5bvv222ili4"; 31 + hash = "sha256-OOPjxYrYUd1PIRxRgHwYbm7ennmAChbXqcM8MEPKXO0="; 32 32 }; 33 33 34 34 outputs = [ "out" "dev" ];
-1
pkgs/desktops/cinnamon/warpinator/default.nix
··· 17 17 version = "1.0.8"; 18 18 19 19 format = "other"; 20 - doCheck = false; 21 20 22 21 src = fetchFromGitHub { 23 22 owner = "linuxmint";