bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
29 lines
725 B
Nix
29 lines
725 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "tm-0.4.1";
|
|
|
|
installPhase=''make install "PREFIX=$out"'';
|
|
|
|
patchPhase = ''sed -i 's@/usr/bin/install@install@g' Makefile'';
|
|
|
|
crossAttrs = {
|
|
makeFlags = "CC=${stdenv.cross.config}-gcc";
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = http://vicerveza.homeunix.net/~viric/soft/tm/tm-0.4.1.tar.gz;
|
|
sha256 = "3b389bc03b6964ad5ffa57a344b891fdbcf7c9b2604adda723a863f83657c4a0";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://vicerveza.homeunix.net/~viric/soft/tm";
|
|
description = "Terminal mixer - multiplexer for the i/o of terminal applications";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ viric ];
|
|
platforms = platforms.all;
|
|
};
|
|
|
|
}
|