1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

terminus: init at 1.0.0-alpha.42

This commit is contained in:
José Luis Lafuente 2018-03-18 18:09:01 +01:00
parent bb165a9d6f
commit 7a27cae113
No known key found for this signature in database
GPG key ID: 8A3455EBE455489A
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,43 @@
{ stdenv, lib, fetchurl, dpkg, gtk2, atk, glib, pango, gdk_pixbuf, cairo
, freetype, fontconfig, dbus, libXi, libXcursor, libXdamage, libXrandr
, libXcomposite, libXext, libXfixes, libXrender, libX11, libXtst, libXScrnSaver
, libxcb, makeWrapper, nodejs
, GConf, nss, nspr, alsaLib, cups, expat, libudev, libpulseaudio }:
let
libPath = stdenv.lib.makeLibraryPath [
stdenv.cc.cc gtk2 atk glib pango gdk_pixbuf cairo freetype fontconfig dbus
libXi libXcursor libXdamage libXrandr libXcomposite libXext libXfixes libxcb
libXrender libX11 libXtst libXScrnSaver GConf nss nspr alsaLib cups expat libudev libpulseaudio
];
in
stdenv.mkDerivation rec {
version = "1.0.0-alpha.42";
name = "terminus-${version}";
src = fetchurl {
url = "https://github.com/Eugeny/terminus/releases/download/v${version}/terminus_${version}_amd64.deb";
sha256 = "1r5n75n71zwahg4rxlnf9qzrb0651gxv0987m6bykqmfpnw91nmb";
};
buildInputs = [ dpkg makeWrapper ];
unpackPhase = ''
mkdir pkg
dpkg-deb -x $src pkg
sourceRoot=pkg
'';
installPhase = ''
mkdir -p "$out/bin"
mv opt "$out/"
ln -s "$out/opt/Terminus/terminus" "$out/bin/terminus"
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" --set-rpath "${libPath}:\$ORIGIN" "$out/opt/Terminus/terminus"
mv usr/* "$out/"
wrapProgram $out/bin/terminus --prefix PATH : ${lib.makeBinPath [ nodejs ]}
'';
dontPatchELF = true;
meta = with lib; {
description = "A terminal for a more modern age";
homepage = https://eugeny.github.io/terminus/;
maintainers = with maintainers; [ jlesquembre ];
license = licenses.mit;
platforms = [ "x86_64-linux" ];
};
}

View file

@ -17778,6 +17778,8 @@ with pkgs;
vte = gnome2.vte.override { pythonSupport = true; };
};
terminus = callPackage ../applications/misc/terminus { inherit (gnome2) GConf; };
lxterminal = callPackage ../applications/misc/lxterminal {
vte = gnome3.vte;
};