ca5ab3a501
GitOrigin-RevId: 4a01ca36d6bfc133bc617e661916a81327c9bbc8
28 lines
724 B
Nix
28 lines
724 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "arc-kde-theme";
|
|
version = "20220706";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PapirusDevelopmentTeam";
|
|
repo = "arc-kde";
|
|
rev = version;
|
|
sha256 = "sha256-k/+VhqvOg3wkqal7q7nSVpubK/yHnNoTUUWhnxwcIjM=";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
# Make this a fixed-output derivation
|
|
outputHashMode = "recursive";
|
|
outputHashAlgo = "sha256";
|
|
ouputHash = "2c2def57092a399aa1c450699cbb8639f47d751157b18db17";
|
|
|
|
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;
|
|
};
|
|
}
|