nixpkgs/pkgs/desktops/deepin/deepin-sound-theme/default.nix

31 lines
685 B
Nix
Raw Normal View History

2020-05-03 20:52:19 +01:00
{ stdenv
, fetchFromGitHub
, deepin
}:
2018-09-08 16:26:43 +01:00
stdenv.mkDerivation rec {
2018-10-30 22:17:45 +00:00
pname = "deepin-sound-theme";
2018-09-08 16:26:43 +01:00
version = "15.10.3";
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = "deepin-sound-theme";
rev = version;
sha256 = "1sw4nrn7q7wk1hpicm05apyc0mihaw42iqm52wb8ib8gm1qiylr9";
};
2020-05-03 20:52:19 +01:00
makeFlags = [
"PREFIX=${placeholder "out"}"
];
2018-09-08 16:26:43 +01:00
passthru.updateScript = deepin.updateScript { inherit pname version src; };
2018-10-30 22:17:45 +00:00
2018-09-08 16:26:43 +01:00
meta = with stdenv.lib; {
description = "Deepin sound theme";
homepage = "https://github.com/linuxdeepin/deepin-sound-theme";
2018-09-08 16:26:43 +01:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
};
}