mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +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
35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-shell-extension-remove-dropdown-arrows";
|
|
version = "13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mpdeimos";
|
|
repo = "gnome-shell-remove-dropdown-arrows";
|
|
rev = "version/${version}";
|
|
sha256 = "09b2hnfbqym20pb1sfc8xiz7gs2kbs6b1s7xl8swc8dydhsbambk";
|
|
};
|
|
|
|
# This package has a Makefile, but it's used for publishing and linting, not
|
|
# for building. Disable the build phase so installing doesn't attempt to
|
|
# publish the extension.
|
|
dontBuild = true;
|
|
|
|
uuid = "remove-dropdown-arrows@mpdeimos.com";
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/share/gnome-shell/extensions/${uuid}
|
|
cp extension.js $out/share/gnome-shell/extensions/${uuid}
|
|
cp metadata.json $out/share/gnome-shell/extensions/${uuid}
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Remove dropdown arrows from GNOME Shell Menus";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ jonafato ];
|
|
homepage = "https://github.com/mpdeimos/gnome-shell-remove-dropdown-arrows";
|
|
};
|
|
}
|