Add package: stag

This commit is contained in:
Matthias Beyer 2015-01-15 16:39:19 +01:00
parent efa8fc2b0a
commit 6be4eb7a43
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, fetchgit, curses }:
stdenv.mkDerivation {
name = "stag-1.0";
src = fetchgit {
url = https://github.com/seenaburns/stag.git;
rev = "90e2964959ea8242349250640d24cee3d1966ad6";
sha256 = "88628dfa07a0772c7eca0cc66ef2d8f3e20297deec021c776a82fe1323bafb0f";
};
buildInputs = [ stdenv curses ];
installPhase = ''
make install PREFIX=$out
'';
meta = {
homepage = "https://github.com/seenaburns/stag";
description = "Terminal streaming bar graph passed through stdin.;
license = stdenv.lib.licenses.bsdOriginal;
# FIXME: waiting on PR #5773 for maintainer entry
#maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
};
}

View File

@ -10957,6 +10957,10 @@ let
conf = config.st.conf or null;
};
stag = callPackage ../applications/misc/stag {
curses = ncurses;
};
stella = callPackage ../misc/emulators/stella { };
linuxstopmotion = callPackage ../applications/video/linuxstopmotion { };