mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
985aa8174d
`appimageTools.wrapType2` no longer creates a binary `$out/bin/${name}` if `pname` and `version` is provided. Derivations that have worked around this behavior with a `mv $out/bin/{${name},${pname}}` broke as a result. This should fix most instances. contex: #271071
34 lines
1,001 B
Nix
34 lines
1,001 B
Nix
{ lib
|
|
, appimageTools
|
|
, fetchurl
|
|
}:
|
|
|
|
appimageTools.wrapType2 rec {
|
|
pname = "parsify";
|
|
version = "2.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/parsify-dev/desktop/releases/download/v${version}/Parsify-${version}-linux-x86_64.AppImage";
|
|
hash = "sha256-ltWqRW+cBvuUJzhya62WsBY5zqIua9xhilxfd9gr24A=";
|
|
};
|
|
|
|
extraInstallCommands =
|
|
let contents = appimageTools.extract { inherit pname version src; };
|
|
in ''
|
|
install -m 444 -D ${contents}/@parsifydesktop.desktop -t $out/share/applications
|
|
|
|
substituteInPlace $out/share/applications/@parsifydesktop.desktop \
|
|
--replace "Exec=AppRun" "Exec=${pname}"
|
|
|
|
cp -r ${contents}/usr/share/* $out/share
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Next generation notepad-based calculator, built with extendibility and privacy in mind";
|
|
homepage = "https://parsify.app/";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ kashw2 ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "parsify";
|
|
};
|
|
}
|