tie: init at 2.4

This commit is contained in:
Rahul Gopinath 2016-07-03 11:13:13 -07:00
parent 6f7bace3b8
commit f3da2e5bac
2 changed files with 29 additions and 0 deletions

@ -0,0 +1,27 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "tie-${version}";
version = "2.4";
src = fetchurl {
url = "http://mirrors.ctan.org/web/tie/${name}.tar.gz";
sha256 = "1m5952kdfffiz33p1jw0wv7dh272mmw28mpxw9v7lkb352zv4xsj";
};
buildPhase = ''
gcc tie.c -o tie
'';
installPhase = ''
mkdir -p $out/bin
cp tie $out/bin
'';
meta = with stdenv.lib; {
homepage = https://www.ctan.org/tex-archive/web/tie;
description = "Allow multiple web change files";
platforms = with platforms; unix;
maintainers = with maintainers; [ vrthra ];
};
}

@ -3598,6 +3598,8 @@ in
tinc = callPackage ../tools/networking/tinc { };
tie = callPackage ../development/tools/misc/tie { };
tinc_pre = callPackage ../tools/networking/tinc/pre.nix { };
tiny8086 = callPackage ../applications/virtualization/8086tiny { };