about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2024-01-01 10:29:18 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2024-01-01 10:29:18 -0300
commitc427b7a82456779d703e9f5f048467b6fb6872e6 (patch)
tree11f5ea27480cc48b990fd1038ba689bfd759300c /pkgs/development/libraries
parent9b6e63979faa8b75c208f12ff2f5e828df603501 (diff)
downloadnixlib-c427b7a82456779d703e9f5f048467b6fb6872e6.tar
nixlib-c427b7a82456779d703e9f5f048467b6fb6872e6.tar.gz
nixlib-c427b7a82456779d703e9f5f048467b6fb6872e6.tar.bz2
nixlib-c427b7a82456779d703e9f5f048467b6fb6872e6.tar.lz
nixlib-c427b7a82456779d703e9f5f048467b6fb6872e6.tar.xz
nixlib-c427b7a82456779d703e9f5f048467b6fb6872e6.tar.zst
nixlib-c427b7a82456779d703e9f5f048467b6fb6872e6.zip
tecla: migrate to by-name hierarchy
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/tecla/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/development/libraries/tecla/default.nix b/pkgs/development/libraries/tecla/default.nix
deleted file mode 100644
index 4c6ec8e01691..000000000000
--- a/pkgs/development/libraries/tecla/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ lib, stdenv, fetchurl }:
-
-stdenv.mkDerivation rec {
-  pname = "tecla";
-  version = "1.6.3";
-
-  src = fetchurl {
-    url = "https://www.astro.caltech.edu/~mcs/tecla/libtecla-${version}.tar.gz";
-    sha256 = "06pfq5wa8d25i9bdjkp4xhms5101dsrbg82riz7rz1a0a32pqxgj";
-  };
-
-  postPatch = ''
-    substituteInPlace install-sh \
-      --replace "stripprog=" "stripprog=\$STRIP # "
-  '';
-
-  env = lib.optionalAttrs stdenv.cc.isClang {
-    NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";
-  };
-
-  meta = {
-    description = "Command-line editing library";
-    homepage = "https://www.astro.caltech.edu/~mcs/tecla/";
-    license = "as-is";
-    mainProgram = "enhance";
-    platforms = lib.platforms.unix;
-  };
-}