about summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-11-22 11:04:46 +0800
committerBobby Rong <rjl931189261@126.com>2022-11-29 10:11:56 +0800
commit4035cd5222bac5ee929b393f7d1d764caf96f73b (patch)
treefdfe2a64376244f974388cd812e9ffeb2a0c91e8 /pkgs/desktops
parent74925675b4fe6e36857759a2a818f984edc5c12d (diff)
cinnamon.mint-themes: Switch to tags, use stdenvNoCC
You don't need cc to build and install this.
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/cinnamon/mint-themes/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/desktops/cinnamon/mint-themes/default.nix b/pkgs/desktops/cinnamon/mint-themes/default.nix
index 809ffac849b81..a3d16938ca190 100644
--- a/pkgs/desktops/cinnamon/mint-themes/default.nix
+++ b/pkgs/desktops/cinnamon/mint-themes/default.nix
@@ -1,20 +1,19 @@
 { fetchFromGitHub
 , lib
-, stdenv
+, stdenvNoCC
 , python3
 , sassc
 , sass
 }:
 
-stdenv.mkDerivation rec {
+stdenvNoCC.mkDerivation rec {
   pname = "mint-themes";
   version = "2.0.5";
 
   src = fetchFromGitHub {
     owner = "linuxmint";
     repo = pname;
-    # they don't exactly do tags, it's just a named commit
-    rev = "3a202e401abca98623cd1dbc412221682081244c";
+    rev = version;
     hash = "sha256-OgyLNc6gwMn7dG5/T67Toiqsij1rJYV6k6Un2cgr2oQ=";
   };