forked from mirrors/nixpkgs
cider: init at 1.3.1308
remove unnecessary newlines Co-authored-by: Sandro <sandro.jaeckel@gmail.com> add version information to bin Co-authored-by: Sandro <sandro.jaeckel@gmail.com> remove name
This commit is contained in:
parent
976a5bc9ff
commit
557c643ee6
30
pkgs/applications/audio/cider/default.nix
Normal file
30
pkgs/applications/audio/cider/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{ appimageTools, lib, fetchurl }:
|
||||||
|
|
||||||
|
appimageTools.wrapType2 rec {
|
||||||
|
pname = "cider";
|
||||||
|
version = "1.3.1308";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://1308-429851205-gh.circle-artifacts.com/0/%7E/Cider/dist/artifacts/Cider-${version}.AppImage";
|
||||||
|
sha256 = "1lbyvn1c8155p039qfzx7jwad7km073phkmrzjm0w3ahdpwz3wgi";
|
||||||
|
};
|
||||||
|
|
||||||
|
extraInstallCommands =
|
||||||
|
let contents = appimageTools.extract { inherit pname version src; };
|
||||||
|
in ''
|
||||||
|
mv $out/bin/${pname}-${version} $out/bin/${pname}
|
||||||
|
|
||||||
|
install -m 444 -D ${contents}/${pname}.desktop -t $out/share/applications
|
||||||
|
substituteInPlace $out/share/applications/${pname}.desktop \
|
||||||
|
--replace 'Exec=AppRun' 'Exec=${pname}'
|
||||||
|
cp -r ${contents}/usr/share/icons $out/share
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A new look into listening and enjoying Apple Music in style and performance.";
|
||||||
|
homepage = "https://github.com/ciderapp/Cider";
|
||||||
|
license = licenses.agpl3;
|
||||||
|
maintainers = [ maintainers.cigrainger ];
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4145,6 +4145,8 @@ with pkgs;
|
||||||
stdenv = gcc9Stdenv;
|
stdenv = gcc9Stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
cider = callPackage ../applications/audio/cider { };
|
||||||
|
|
||||||
isolyzer = callPackage ../tools/cd-dvd/isolyzer { };
|
isolyzer = callPackage ../tools/cd-dvd/isolyzer { };
|
||||||
|
|
||||||
isomd5sum = callPackage ../tools/cd-dvd/isomd5sum { };
|
isomd5sum = callPackage ../tools/cd-dvd/isomd5sum { };
|
||||||
|
|
Loading…
Reference in a new issue