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
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, glib, gnome3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-shell-extension-pidgin-im-integration";
|
|
version = "32";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "muffinmad";
|
|
repo = "pidgin-im-gnome-shell-extension";
|
|
rev = "v${version}";
|
|
sha256 = "1jyg8r0s1v83sgg6y0jbsj2v37mglh8rvd8vi27fxnjq9xmg8kpc";
|
|
};
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
share_dir="$prefix/share"
|
|
extensions_dir="$share_dir/gnome-shell/extensions/pidgin@muffinmad"
|
|
mkdir -p "$extensions_dir"
|
|
mv *.js metadata.json dbus.xml schemas locale "$extensions_dir"
|
|
runHook postInstall
|
|
'';
|
|
|
|
uuid = "pidgin@muffinmad";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/muffinmad/pidgin-im-gnome-shell-extension";
|
|
description = "Make Pidgin IM conversations appear in the Gnome Shell message tray";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ];
|
|
broken = versionAtLeast gnome3.gnome-shell.version "3.32"; # Doesn't support 3.34
|
|
};
|
|
}
|