adapta-kde-theme: 20180512 -> 20180828

+ move under data/themes
This commit is contained in:
c0bw3b
2019-11-24 21:58:58 +01:00
parent 438a39f80b
commit d8c37ed93f
2 changed files with 5 additions and 5 deletions
+28
View File
@@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "adapta-kde-theme";
version = "20180828";
src = fetchFromGitHub {
owner = "PapirusDevelopmentTeam";
repo = "adapta-kde";
rev = version;
sha256 = "1q85678sff8is2kwvgd703ckcns42gdga2c1rqlp61gb6bqf09j8";
};
makeFlags = [ "PREFIX=$(out)" ];
# Make this a fixed-output derivation
outputHashMode = "recursive";
outputHashAlgo = "sha256";
ouputHash = "0rxhk8sp81vb2mngqr7kn9vlqyliq9aqj2d25igcr01v5axbxbzb";
meta = {
description = "A port of the Adapta theme for Plasma";
homepage = https://git.io/adapta-kde;
license = stdenv.lib.licenses.gpl3;
maintainers = [ stdenv.lib.maintainers.tadfisher ];
platforms = stdenv.lib.platforms.all;
};
}