diff --git a/pkgs/development/tools/misc/tie/default.nix b/pkgs/development/tools/misc/tie/default.nix new file mode 100644 index 000000000000..11f2d62b76ca --- /dev/null +++ b/pkgs/development/tools/misc/tie/default.nix @@ -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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0606ceef866a..a1d1e2f10423 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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 { };