about summary refs log tree commit diff
path: root/pkgs/tools/text/xidel/default.nix
AgeCommit message (Collapse)AuthorFilesLines
2024-06-11xidel: Set platforms to platforms.allNelson Elhage1-1/+1
The Linux-only `platforms` setting dates to 10 years ago in 7f06428544897f9064db5520433393a8cb16a72f, where it was accompanied by the comment > `# more platforms will be supported when we switch to source build` That switch happened in 2021 in d14ea1499b7a3e373bf53dd4aa631a9352344564. I've confirmed that the current package builds just fine on my `aarch64-darwin` laptop.
2024-03-19treewide: add meta.mainProgram to packages with a single binarystuebinm1-0/+1
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
2023-07-12pkgs/tools/text: remove dead codefigsoda1-1/+1
with the help of deadnix & nil
2023-01-23xidel: 0.9.8 -> unstable-2022-11-01ajs1241-24/+23
Now with working https connections on openssl_3.
2021-10-05xidel: add TLS supportAlyssa Ross1-1/+4
Without this, it would try to find libcrypto in libc's prefix, and then fail with this message: Error: Internet Error: -2 Couldn't load ssl libraries: libopenssl and libcrypto They must be installed separately. On Debian/Ubuntu install libssl-dev. On Fedora/CentOS install openssl-devel. On Windows install OpenSSL from https://slproweb.com/products/Win32OpenSSL.html when talking to: https://archive.mozilla.org/pub/firefox/releases/ Tested with xidel -s https://archive.mozilla.org/pub/firefox/releases/ --extract "//a"
2021-08-18xidel: 0.9.6 -> 0.9.8, refactorJ. Neto1-36/+80
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-2/+2
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-1/+1
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2018-08-30reewide: Purge all uses `stdenv.system` and top-level `system`John Ericson1-3/+3
It is deprecated and will be removed after 18.09.
2018-02-27xidel: 0.8.4 -> 0.9.6Ryan Mulligan1-2/+2
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/1fxha1zsb54kakf7y59a8sqdav71lvgr-xidel-0.9.6/bin/xidel -h` got 0 exit code - ran `/nix/store/1fxha1zsb54kakf7y59a8sqdav71lvgr-xidel-0.9.6/bin/xidel --help` got 0 exit code - ran `/nix/store/1fxha1zsb54kakf7y59a8sqdav71lvgr-xidel-0.9.6/bin/xidel -V` and found version 0.9.6 - ran `/nix/store/1fxha1zsb54kakf7y59a8sqdav71lvgr-xidel-0.9.6/bin/xidel -v` and found version 0.9.6 - ran `/nix/store/1fxha1zsb54kakf7y59a8sqdav71lvgr-xidel-0.9.6/bin/xidel --version` and found version 0.9.6 - ran `/nix/store/1fxha1zsb54kakf7y59a8sqdav71lvgr-xidel-0.9.6/bin/xidel -h` and found version 0.9.6 - ran `/nix/store/1fxha1zsb54kakf7y59a8sqdav71lvgr-xidel-0.9.6/bin/xidel --help` and found version 0.9.6 - found 0.9.6 in filename of file in /nix/store/1fxha1zsb54kakf7y59a8sqdav71lvgr-xidel-0.9.6 cc "@bjornfor"
2016-11-19xidel: refactor & fix evalJoachim Fasting1-6/+4
- Fix eval by removing reference to non-existent stdenv.glibc - Simplify patchelf calls - Set meta.platforms = linux
2016-05-04use dontBuild instead of hacksRobin Gloster1-1/+1
changes: * buildPhase = "true" * buildPhase = ":"
2015-05-05fix "libc}/lib" and similar referencesVladimír Čunát1-1/+1
Done mostly without any verification. I didn't bother with libc}/include, as the path is still correct.
2014-12-30xidel: new packageBjørn Forsman1-0/+51
Command line tool to download and extract data from html/xml page. http://videlibri.sourceforge.net/xidel.html