nixpkgs/pkgs/applications/misc/termite/default.nix

25 lines
673 B
Nix
Raw Normal View History

{ stdenv, fetchgit, pkgconfig, vte, gtk3, ncurses }:
stdenv.mkDerivation rec {
name = "termite-${version}";
2016-02-25 21:53:40 +00:00
version = "11";
src = fetchgit {
url = "https://github.com/thestinger/termite";
2014-11-04 22:50:23 +00:00
rev = "refs/tags/v${version}";
2016-02-25 21:53:40 +00:00
sha256 = "1k91nw19c0p5ghqhs00mn9npa91idfkyiwik3ng6hb4jbnblp5ph";
};
2016-02-25 21:53:40 +00:00
makeFlags = [ "VERSION=v${version}" "PREFIX=" "DESTDIR=$(out)" ];
buildInputs = [ pkgconfig vte gtk3 ncurses ];
2014-11-04 22:50:23 +00:00
meta = with stdenv.lib; {
description = "A simple VTE-based terminal";
2014-11-04 22:50:23 +00:00
license = licenses.lgpl2Plus;
homepage = https://github.com/thestinger/termite/;
2014-11-04 22:50:23 +00:00
maintainers = [ maintainers.koral ];
platforms = platforms.all;
};
}