mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
23 lines
580 B
Nix
23 lines
580 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "arc-kde-theme";
|
|
version = "20220908";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PapirusDevelopmentTeam";
|
|
repo = "arc-kde";
|
|
rev = version;
|
|
sha256 = "sha256-dxk8YpJB4XaZHD/O+WvQUFKJD2TE38VZyC5orn4N7BA=";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = {
|
|
description = "Port of the arc theme for Plasma";
|
|
homepage = "https://github.com/PapirusDevelopmentTeam/arc-kde";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = [ lib.maintainers.nixy ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|