mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
24 lines
555 B
Nix
24 lines
555 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "arc-kde-theme";
|
|
version = "20220810";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PapirusDevelopmentTeam";
|
|
repo = "arc-kde";
|
|
rev = version;
|
|
sha256 = "sha256-atL0sW3AedQl7PabOQOjeJ5U8a4/J4x0rxFCbxJ4ONA=";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = {
|
|
description = "A port of the arc theme for Plasma";
|
|
homepage = "https://git.io/arc-kde";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = [ lib.maintainers.nixy ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|