termite: make it possible to provide a configuration file for termite
also added myself as a maintainer
This commit is contained in:
parent
76222c10d5
commit
348ae8f6ec
@ -1,34 +1,47 @@
|
|||||||
{ stdenv, fetchgit, pkgconfig, vte, gtk3, ncurses }:
|
{ stdenv, fetchgit, pkgconfig, vte, gtk3, ncurses, makeWrapper
|
||||||
|
, configFile ? null
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let
|
||||||
name = "termite-${version}";
|
|
||||||
version = "11";
|
version = "11";
|
||||||
|
termite = stdenv.mkDerivation {
|
||||||
|
name = "termite-${version}";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "https://github.com/thestinger/termite";
|
url = "https://github.com/thestinger/termite";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
sha256 = "1k91nw19c0p5ghqhs00mn9npa91idfkyiwik3ng6hb4jbnblp5ph";
|
sha256 = "1k91nw19c0p5ghqhs00mn9npa91idfkyiwik3ng6hb4jbnblp5ph";
|
||||||
|
};
|
||||||
|
|
||||||
|
makeFlags = [ "VERSION=v${version}" "PREFIX=" "DESTDIR=$(out)" ];
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig vte gtk3 ncurses ];
|
||||||
|
|
||||||
|
outputs = [ "out" "terminfo" ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $terminfo/share
|
||||||
|
mv $out/share/terminfo $terminfo/share/terminfo
|
||||||
|
|
||||||
|
mkdir -p $out/nix-support
|
||||||
|
echo "$terminfo" >> $out/nix-support/propagated-user-env-packages
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A simple VTE-based terminal";
|
||||||
|
license = licenses.lgpl2Plus;
|
||||||
|
homepage = https://github.com/thestinger/termite/;
|
||||||
|
maintainers = with matinainers; [ koral garbas ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
in if configFile == null then termite else stdenv.mkDerivation {
|
||||||
makeFlags = [ "VERSION=v${version}" "PREFIX=" "DESTDIR=$(out)" ];
|
name = "termite-with-config-${version}";
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
buildInputs = [ pkgconfig vte gtk3 ncurses ];
|
buildCommand = ''
|
||||||
|
mkdir -p $out/etc/xdg/termite/ $out/bin
|
||||||
outputs = [ "out" "terminfo" ];
|
ln -s ${termite}/bin/termite $out/bin/termite
|
||||||
|
wrapProgram $out/bin/termite --add-flags "--config ${configFile}"
|
||||||
postInstall = ''
|
|
||||||
mkdir -p $terminfo/share
|
|
||||||
mv $out/share/terminfo $terminfo/share/terminfo
|
|
||||||
|
|
||||||
mkdir -p $out/nix-support
|
|
||||||
echo "$terminfo" >> $out/nix-support/propagated-user-env-packages
|
|
||||||
'';
|
'';
|
||||||
|
passthru.terminfo = termite.terminfo;
|
||||||
meta = with stdenv.lib; {
|
|
||||||
description = "A simple VTE-based terminal";
|
|
||||||
license = licenses.lgpl2Plus;
|
|
||||||
homepage = https://github.com/thestinger/termite/;
|
|
||||||
maintainers = [ maintainers.koral ];
|
|
||||||
platforms = platforms.all;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user