forked from mirrors/nixpkgs
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
32 lines
854 B
Nix
32 lines
854 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, gtk_engines }:
|
|
|
|
stdenv.mkDerivation {
|
|
version = "2016-08-16";
|
|
pname = "paper-gtk-theme";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "snwh";
|
|
repo = "paper-gtk-theme";
|
|
rev = "f75724fd76fd2e5681a367cca246a51f845320c3";
|
|
sha256 = "0dqllzjk9ggnbh8vvy2c81p3wq6cj73r30hk7gqhrn8i91w8p896";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ gtk_engines ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile.am --replace '$(DESTDIR)'/usr $out
|
|
'';
|
|
|
|
preferLocalBuild = true;
|
|
|
|
meta = with lib; {
|
|
description = "A modern desktop theme suite featuring a mostly flat with a minimal use of shadows for depth";
|
|
homepage = "https://snwh.org/paper";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.simonvandel maintainers.romildo ];
|
|
};
|
|
}
|