mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 17:41:12 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
38 lines
1 KiB
Nix
38 lines
1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-shell-freon";
|
|
version = "40";
|
|
|
|
uuid = "freon@UshakovVasilii_Github.yahoo.com";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "UshakovVasilii";
|
|
repo = "gnome-shell-extension-freon";
|
|
rev = "EGO-${version}";
|
|
sha256 = "0ak6f5dds9kk3kqww681gs3l1mj3vf22icrvb5m257s299rq8yzl";
|
|
};
|
|
|
|
nativeBuildInputs = [ glib ];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
glib-compile-schemas --strict --targetdir=${uuid}/schemas ${uuid}/schemas
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/share/gnome-shell/extensions
|
|
cp -r ${uuid} $out/share/gnome-shell/extensions
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "GNOME Shell extension for displaying CPU, GPU, disk temperatures, voltage and fan RPM in the top panel";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ justinas ];
|
|
homepage = "https://github.com/UshakovVasilii/gnome-shell-extension-freon";
|
|
};
|
|
}
|