mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
cider-2: init at 2.5.0 (#347363)
This commit is contained in:
commit
e24d868aba
|
@ -9512,6 +9512,13 @@
|
||||||
email = "itepastra@gmail.com";
|
email = "itepastra@gmail.com";
|
||||||
keys = [ { fingerprint = "E681 4CAF 06AE B076 D55D 3E32 A16C DCBF 1472 541F"; } ];
|
keys = [ { fingerprint = "E681 4CAF 06AE B076 D55D 3E32 A16C DCBF 1472 541F"; } ];
|
||||||
};
|
};
|
||||||
|
itsvic-dev = {
|
||||||
|
email = "contact@itsvic.dev";
|
||||||
|
name = "Victor B.";
|
||||||
|
github = "itsvic-dev";
|
||||||
|
githubId = 17727163;
|
||||||
|
keys = [ { fingerprint = "FBAA B86A 101B 4C5F D4F1 25D2 E93D DAC1 7E5D 6CA1"; } ];
|
||||||
|
};
|
||||||
ius = {
|
ius = {
|
||||||
email = "j.de.gram@gmail.com";
|
email = "j.de.gram@gmail.com";
|
||||||
name = "Joerie de Gram";
|
name = "Joerie de Gram";
|
||||||
|
|
47
pkgs/by-name/ci/cider-2/package.nix
Normal file
47
pkgs/by-name/ci/cider-2/package.nix
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
appimageTools,
|
||||||
|
lib,
|
||||||
|
requireFile,
|
||||||
|
makeWrapper,
|
||||||
|
}:
|
||||||
|
|
||||||
|
appimageTools.wrapType2 rec {
|
||||||
|
pname = "cider-2";
|
||||||
|
version = "2.5.0";
|
||||||
|
|
||||||
|
src = requireFile {
|
||||||
|
name = "Cider-linux-appimage-x64.AppImage";
|
||||||
|
url = "https://cidercollective.itch.io/cider";
|
||||||
|
sha256 = "1nm35psq9ddii2c15kb03ifcn43fimvc4yzb4cpm1gqsiz4w21qz";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
extraInstallCommands =
|
||||||
|
let
|
||||||
|
contents = appimageTools.extract {
|
||||||
|
inherit version src;
|
||||||
|
# HACK: this looks for a ${pname}.desktop, where `cider-2.desktop` doesn't exist
|
||||||
|
pname = "cider";
|
||||||
|
};
|
||||||
|
in
|
||||||
|
''
|
||||||
|
wrapProgram $out/bin/${pname} \
|
||||||
|
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" \
|
||||||
|
--add-flags "--no-sandbox --disable-gpu-sandbox" # Cider 2 does not start up properly without these from my preliminary testing
|
||||||
|
|
||||||
|
install -m 444 -D ${contents}/cider.desktop $out/share/applications/${pname}.desktop
|
||||||
|
substituteInPlace $out/share/applications/${pname}.desktop \
|
||||||
|
--replace-warn 'Exec=AppRun --no-sandbox' 'Exec=${pname}'
|
||||||
|
cp -r ${contents}/usr/share/icons $out/share
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Powerful music player that allows you listen to your favorite tracks with style";
|
||||||
|
homepage = "https://cider.sh";
|
||||||
|
license = lib.licenses.unfree;
|
||||||
|
mainProgram = "cider-2";
|
||||||
|
maintainers = with lib.maintainers; [ itsvic-dev ];
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue