nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 stdenvNoCC,
3 lib,
4 fetchFromGitHub,
5}:
6
7stdenvNoCC.mkDerivation rec {
8 pname = "deepin-sound-theme";
9 version = "15.10.6";
10
11 src = fetchFromGitHub {
12 owner = "linuxdeepin";
13 repo = pname;
14 rev = version;
15 sha256 = "sha256-BvG/ygZfM6sDuDSzAqwCzDXGT/bbA6Srlpg3br117OU=";
16 };
17
18 makeFlags = [ "PREFIX=${placeholder "out"}" ];
19
20 meta = with lib; {
21 description = "Freedesktop sound theme for Deepin";
22 homepage = "https://github.com/linuxdeepin/deepin-sound-theme";
23 license = licenses.gpl3Plus;
24 platforms = platforms.linux;
25 teams = [ teams.deepin ];
26 };
27}