1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/tools/misc/tie/default.nix

28 lines
595 B
Nix
Raw Normal View History

2016-07-03 19:13:13 +01:00
{ 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 = ''
2016-08-12 06:08:45 +01:00
cc tie.c -o tie
2016-07-03 19:13:13 +01:00
'';
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 ];
};
}