1

add adwaita-for-steam derivation

This commit is contained in:
2022-08-13 00:33:46 +02:00
parent e2a0c90a1b
commit cf8f42c8d6

View File

@ -0,0 +1,23 @@
{ lib, stdenv, src }:
stdenv.mkDerivation {
pname = "adwaita-for-steam";
version = "unstable";
inherit src;
dontConfigure = true;
dontBuild = true;
doCheck = false;
installPhase = ''
mkdir -p $out/share/adwaita-for-steam
cp -r Adwaita/* $out/share/adwaita-for-steam
'';
meta = with lib; {
description = "A GNOME theme for Steam";
homepage = "https://github.com/tkashkin/Adwaita-for-Steam";
license = licenses.mit;
};
}