nixpkgs/pkgs/data/themes/arc-kde/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
582 B
Nix
Raw Normal View History

2021-01-15 08:29:18 +01:00
{ lib, stdenv, fetchFromGitHub }:
2017-12-30 18:20:40 +01:00
stdenv.mkDerivation rec {
pname = "arc-kde-theme";
2022-09-09 11:20:10 +02:00
version = "20220908";
2017-12-30 18:20:40 +01:00
src = fetchFromGitHub {
owner = "PapirusDevelopmentTeam";
repo = "arc-kde";
rev = version;
2022-09-09 11:20:10 +02:00
sha256 = "sha256-dxk8YpJB4XaZHD/O+WvQUFKJD2TE38VZyC5orn4N7BA=";
2017-12-30 18:20:40 +01:00
};
makeFlags = [ "PREFIX=$(out)" ];
2017-12-30 18:20:40 +01:00
meta = {
description = "A port of the arc theme for Plasma";
homepage = "https://github.com/PapirusDevelopmentTeam/arc-kde";
2021-01-15 08:29:18 +01:00
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.nixy ];
platforms = lib.platforms.all;
2017-12-30 18:20:40 +01:00
};
}