mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
a6dd104efe
Signed-off-by: Alexander Trost <galexrt@googlemail.com>
34 lines
672 B
Nix
34 lines
672 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, gtk-engine-murrine
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "flat-remix-gtk";
|
|
version = "20240730";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "daniruiz";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-EWe84bLG14RkCNbHp0S5FbUQ5/Ye/KbCk3gPTsGg9oQ=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
propagatedUserEnvPkgs = [
|
|
gtk-engine-murrine
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "GTK application theme inspired by material design";
|
|
homepage = "https://drasite.com/flat-remix-gtk";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.mkg20001 ];
|
|
};
|
|
}
|