mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
migrate packages to home manager
This commit is contained in:
17
packages/firefox-gnome-theme-installer.nix
Normal file
17
packages/firefox-gnome-theme-installer.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ lib, stdenv, fetchFromGitHub, pkgs }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "firefox-gnome-theme";
|
||||
version = "116.0.0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "rafaelmardojai";
|
||||
repo = "firefox-gnome-theme";
|
||||
sparseCheckout = ["scripts"];
|
||||
rev = "v116";
|
||||
sha256 = "0IS5na2WRSNWNygHhmZOcXhdrx2aFhCDQY8XVVeHf8Q=";
|
||||
};
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp scripts/install-by-curl.sh $out/bin/install-firefox-gnome-theme
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user