Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1e5e5bdf3481
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 725a4dafa891
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 19, 2021

  1. Copy the full SHA
    d7257af View commit details
  2. Merge pull request #109848 from AndersonTorres/pkgconfig->pkg-config

    tecoc: 20150606 -> unstable-2020-11-03
    AndersonTorres authored Jan 19, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    725a4da View commit details
Showing with 33 additions and 21 deletions.
  1. +33 −21 pkgs/applications/editors/tecoc/default.nix
54 changes: 33 additions & 21 deletions pkgs/applications/editors/tecoc/default.nix
Original file line number Diff line number Diff line change
@@ -1,37 +1,47 @@
{ lib, stdenv, fetchFromGitHub
, ncurses }:
{ stdenv
, lib
, fetchFromGitHub
, ncurses
}:

stdenv.mkDerivation rec {

pname = "tecoc-git";
version = "20150606";
pname = "tecoc";
version = "unstable-2020-11-03";

src = fetchFromGitHub {
owner = "blakemcbride";
repo = "TECOC";
rev = "d7dffdeb1dfb812e579d6d3b518545b23e1b50cb";
sha256 = "11zfa73dlx71c0hmjz5n3wqcvk6082rpb4sss877nfiayisc0njj";
rev = "79fcb6cfd6c5f9759f6ec46aeaf86d5806b13a0b";
sha256 = "sha256-JooLvoh9CxLHLOXXxE7zA7R9yglr9BGUwX4nrw2/vIw=";
};

buildInputs = [ ncurses ];

makefile = if stdenv.hostPlatform.isDarwin
then "makefile.osx"
else if stdenv.hostPlatform.isFreeBSD
then "makefile.bsd"
else if stdenv.hostPlatform.isOpenBSD
then "makefile.bsd"
else if stdenv.hostPlatform.isWindows
then "makefile.win"
else "makefile.linux"; # I think Linux is a safe default...
then "makefile.osx"
else if stdenv.hostPlatform.isFreeBSD
then "makefile.bsd"
else if stdenv.hostPlatform.isOpenBSD
then "makefile.bsd"
else if stdenv.hostPlatform.isWindows
then "makefile.win"
else "makefile.linux"; # I think Linux is a safe default...

makeFlags = [ "CC=${stdenv.cc}/bin/cc" "-C src/" ];

preInstall = ''
install -d $out/bin $out/share/doc/${pname}-${version} $out/lib/teco/macros
'';

installPhase = ''
mkdir -p $out/bin $out/share/doc/${pname}-${version} $out/lib/teco/macros
cp src/tecoc $out/bin
cp src/aaout.txt doc/* $out/share/doc/${pname}-${version}
cp lib/* lib2/* $out/lib/teco/macros
runHook preInstall
install -m755 src/tecoc $out/bin
install -m644 src/aaout.txt doc/* $out/share/doc/${pname}-${version}
install -m644 lib/* lib2/* $out/lib/teco/macros
runHook postInstall
'';

postInstall = ''
(cd $out/bin
ln -s tecoc Make
ln -s tecoc mung
@@ -54,9 +64,11 @@ stdenv.mkDerivation rec {
of Editor MACroS for TECO.
TECOC is a portable C implementation of TECO-11.
'';
'';
homepage = "https://github.com/blakemcbride/TECOC";
license = { url = "https://github.com/blakemcbride/TECOC/tree/master/doc/readme-1st.txt"; };
license = {
url = "https://github.com/blakemcbride/TECOC/tree/master/doc/readme-1st.txt";
};
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.unix;
};