tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
supersonic: add meta.changelog
Robert Schütz
4 months ago
72b7736b
028621ae
+6
-5
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
su
supersonic
package.nix
+6
-5
pkgs/by-name/su/supersonic/package.nix
···
23
src = fetchFromGitHub {
24
owner = "dweymouth";
25
repo = "supersonic";
26
-
rev = "v${version}";
27
hash = "sha256-NzgmkxG58XvaxcIcu9J0VeRjCQ922rJOp3IWX49dgIU=";
28
};
29
···
88
})
89
];
90
91
-
meta = with lib; {
92
mainProgram = "supersonic" + lib.optionalString waylandSupport "-wayland";
93
description = "Lightweight cross-platform desktop client for Subsonic music servers";
94
homepage = "https://github.com/dweymouth/supersonic";
95
-
platforms = platforms.linux ++ lib.optionals (!waylandSupport) platforms.darwin;
96
-
license = licenses.gpl3Plus;
97
-
maintainers = with maintainers; [
0
98
zane
99
sochotnicky
100
];
···
23
src = fetchFromGitHub {
24
owner = "dweymouth";
25
repo = "supersonic";
26
+
tag = "v${version}";
27
hash = "sha256-NzgmkxG58XvaxcIcu9J0VeRjCQ922rJOp3IWX49dgIU=";
28
};
29
···
88
})
89
];
90
91
+
meta = {
92
mainProgram = "supersonic" + lib.optionalString waylandSupport "-wayland";
93
description = "Lightweight cross-platform desktop client for Subsonic music servers";
94
homepage = "https://github.com/dweymouth/supersonic";
95
+
changelog = "https://github.com/dweymouth/supersonic/releases/tag/${src.tag}";
96
+
platforms = lib.platforms.linux ++ lib.optionals (!waylandSupport) lib.platforms.darwin;
97
+
license = lib.licenses.gpl3Plus;
98
+
maintainers = with lib.maintainers; [
99
zane
100
sochotnicky
101
];