nixpkgs/pkgs/data/icons/pop-icon-theme/default.nix
Profpatsch 4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
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
2021-01-11 10:38:22 +01:00

46 lines
934 B
Nix

{ lib, stdenv
, fetchFromGitHub
, meson
, ninja
, gtk3
, breeze-icons
, gnome3
, pantheon
, hicolor-icon-theme
}:
stdenv.mkDerivation rec {
pname = "pop-icon-theme";
version = "2020-03-04";
src = fetchFromGitHub {
owner = "pop-os";
repo = "icon-theme";
rev = "11f18cb48455b47b6535018f1968777100471be1";
sha256 = "1s4pjwv2ynw400gnzgzczlxzw3gxh5s8cxxbi9zpxq4wzjg6jqyv";
};
nativeBuildInputs = [
meson
ninja
gtk3
];
propagatedBuildInputs = [
breeze-icons
gnome3.adwaita-icon-theme
pantheon.elementary-icon-theme
hicolor-icon-theme
];
dontDropIconThemeCache = true;
meta = with lib; {
description = "Icon theme for Pop!_OS with a semi-flat design and raised 3D motifs";
homepage = "https://github.com/pop-os/icon-theme";
license = with licenses; [ cc-by-sa-40 gpl3 ];
platforms = platforms.unix;
maintainers = with maintainers; [ romildo ];
};
}