tie: init at 2.4
This commit is contained in:
parent
6f7bace3b8
commit
f3da2e5bac
27
pkgs/development/tools/misc/tie/default.nix
Normal file
27
pkgs/development/tools/misc/tie/default.nix
Normal file
@ -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 { };
|
tinc = callPackage ../tools/networking/tinc { };
|
||||||
|
|
||||||
|
tie = callPackage ../development/tools/misc/tie { };
|
||||||
|
|
||||||
tinc_pre = callPackage ../tools/networking/tinc/pre.nix { };
|
tinc_pre = callPackage ../tools/networking/tinc/pre.nix { };
|
||||||
|
|
||||||
tiny8086 = callPackage ../applications/virtualization/8086tiny { };
|
tiny8086 = callPackage ../applications/virtualization/8086tiny { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user