mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
appimageTools,
|
|
nix-update-script,
|
|
}:
|
|
appimageTools.wrapType2 rec {
|
|
pname = "dopamine";
|
|
version = "3.0.0-preview.33";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/digimezzo/dopamine/releases/download/v${version}/Dopamine-${version}.AppImage";
|
|
hash = "sha256-W8XkXnsP0AqYV0wznKe1dbPm2VuhoZWl03G7hib/uxE=";
|
|
};
|
|
|
|
extraInstallCommands =
|
|
let
|
|
contents = appimageTools.extract { inherit pname version src; };
|
|
in
|
|
''
|
|
install -Dm644 ${contents}/dopamine.desktop $out/share/applications/dopamine.desktop
|
|
substituteInPlace $out/share/applications/dopamine.desktop \
|
|
--replace-fail 'Exec=AppRun' 'Exec=dopamine'
|
|
cp -r ${contents}/usr/share/icons $out/share
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { extraArgs = [ "--version=unstable" ]; };
|
|
|
|
meta = {
|
|
changelog = "https://github.com/digimezzo/dopamine/blob/${version}/CHANGELOG.md";
|
|
description = "Audio player that keeps it simple";
|
|
homepage = "https://github.com/digimezzo/dopamine";
|
|
license = lib.licenses.gpl3Only;
|
|
mainProgram = "dopamine";
|
|
maintainers = with lib.maintainers; [ Guanran928 ];
|
|
platforms = [ "x86_64-linux" ];
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
};
|
|
}
|