mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
104 lines
1.9 KiB
Nix
104 lines
1.9 KiB
Nix
{ lib
|
|
, stdenvNoCC
|
|
, stdenv
|
|
, fetchurl
|
|
, autoPatchelfHook
|
|
, undmg
|
|
, zstd
|
|
, curl
|
|
, fontconfig
|
|
, libglvnd
|
|
, libxkbcommon
|
|
, vulkan-loader
|
|
, xdg-utils
|
|
, xorg
|
|
, zlib
|
|
}:
|
|
|
|
let
|
|
pname = "warp-terminal";
|
|
versions = lib.importJSON ./versions.json;
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
linux = stdenv.mkDerivation (finalAttrs: {
|
|
inherit pname meta passthru;
|
|
inherit (versions.linux) version;
|
|
src = fetchurl {
|
|
inherit (versions.linux) hash;
|
|
url = "https://releases.warp.dev/stable/v${finalAttrs.version}/warp-terminal-v${finalAttrs.version}-1-x86_64.pkg.tar.zst";
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
postPatch = ''
|
|
substituteInPlace usr/bin/warp-terminal \
|
|
--replace-fail /opt/ $out/opt/
|
|
'';
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook zstd ];
|
|
|
|
buildInputs = [
|
|
curl
|
|
fontconfig
|
|
stdenv.cc.cc.lib # libstdc++.so libgcc_s.so
|
|
zlib
|
|
];
|
|
|
|
runtimeDependencies = [
|
|
libglvnd # for libegl
|
|
libxkbcommon
|
|
stdenv.cc.libc
|
|
vulkan-loader
|
|
xdg-utils
|
|
xorg.libX11
|
|
xorg.libxcb
|
|
xorg.libXcursor
|
|
xorg.libXi
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir $out
|
|
cp -r opt usr/* $out
|
|
|
|
runHook postInstall
|
|
'';
|
|
});
|
|
|
|
darwin = stdenvNoCC.mkDerivation (finalAttrs: {
|
|
inherit pname meta passthru;
|
|
inherit (versions.darwin) version;
|
|
src = fetchurl {
|
|
inherit (versions.darwin) hash;
|
|
url = "https://releases.warp.dev/stable/v${finalAttrs.version}/Warp.dmg";
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
nativeBuildInputs = [ undmg ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/Applications
|
|
cp -r *.app $out/Applications
|
|
|
|
runHook postInstall
|
|
'';
|
|
});
|
|
|
|
meta = with lib; {
|
|
description = "Rust-based terminal";
|
|
homepage = "https://www.warp.dev";
|
|
license = licenses.unfree;
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
maintainers = with maintainers; [ emilytrau Enzime imadnyc ];
|
|
platforms = platforms.darwin ++ [ "x86_64-linux" ];
|
|
};
|
|
|
|
in
|
|
if stdenvNoCC.isDarwin
|
|
then darwin
|
|
else linux
|