mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
2ee39b6c1c
neo4j-desktop: 1.5.8 -> 1.5.9
32 lines
1 KiB
Nix
32 lines
1 KiB
Nix
{ appimageTools, lib, fetchurl }:
|
|
let
|
|
pname = "neo4j-desktop";
|
|
version = "1.5.9";
|
|
|
|
src = fetchurl {
|
|
url = "https://s3-eu-west-1.amazonaws.com/dist.neo4j.org/${pname}/linux-offline/${pname}-${version}-x86_64.AppImage";
|
|
hash = "sha256-04I1p5wtndIflHqS5qQVf3s8F9ORJ+oy4wi/5PQbnWk=";
|
|
};
|
|
|
|
appimageContents = appimageTools.extract { inherit pname version src; };
|
|
in appimageTools.wrapType2 {
|
|
inherit pname version src;
|
|
|
|
extraPkgs = pkgs: [ pkgs.libsecret ];
|
|
|
|
extraInstallCommands = ''
|
|
install -m 444 -D ${appimageContents}/${pname}.desktop -t $out/share/applications
|
|
substituteInPlace $out/share/applications/${pname}.desktop \
|
|
--replace 'Exec=AppRun' 'Exec=${pname}'
|
|
cp -r ${appimageContents}/usr/share/icons $out/share
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "GUI front-end for Neo4j";
|
|
homepage = "https://neo4j.com/";
|
|
license = licenses.unfree;
|
|
maintainers = [ maintainers.bobvanderlinden ];
|
|
platforms = [ "x86_64-linux" ];
|
|
mainProgram = "neo4j-desktop";
|
|
};
|
|
}
|