nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 23 lines 555 B view raw
1{ lib, stdenv, fetchFromGitHub }: 2 3stdenv.mkDerivation rec { 4 pname = "arc-kde-theme"; 5 version = "20220908"; 6 7 src = fetchFromGitHub { 8 owner = "PapirusDevelopmentTeam"; 9 repo = "arc-kde"; 10 rev = version; 11 sha256 = "sha256-dxk8YpJB4XaZHD/O+WvQUFKJD2TE38VZyC5orn4N7BA="; 12 }; 13 14 makeFlags = [ "PREFIX=$(out)" ]; 15 16 meta = { 17 description = "A port of the arc theme for Plasma"; 18 homepage = "https://git.io/arc-kde"; 19 license = lib.licenses.gpl3; 20 maintainers = [ lib.maintainers.nixy ]; 21 platforms = lib.platforms.all; 22 }; 23}