1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 03:53:41 +00:00
nixpkgs/pkgs/desktops/deepin/deepin-sound-theme/default.nix

27 lines
696 B
Nix
Raw Normal View History

2018-10-30 22:17:45 +00:00
{ stdenv, fetchFromGitHub, deepin }:
2018-09-08 16:26:43 +01:00
stdenv.mkDerivation rec {
2018-10-30 22:17:45 +00:00
name = "${pname}-${version}";
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";
};
makeFlags = [ "PREFIX=${placeholder ''out''}" ];
2018-09-08 16:26:43 +01:00
2018-10-30 22:17:45 +00:00
passthru.updateScript = deepin.updateScript { inherit name; };
2018-09-08 16:26:43 +01:00
meta = with stdenv.lib; {
description = "Deepin sound theme";
homepage = https://github.com/linuxdeepin/deepin-sound-theme;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
};
}