1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #5784 from matthiasbeyer/add-stag

Add package: stag
This commit is contained in:
lethalman 2015-01-17 15:17:24 +01:00
commit 127ee84d8f
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ 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;
maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
};
}

View file

@ -10961,6 +10961,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 { };