about summary refs log tree commit diff
path: root/pkgs/tools/misc/mysql2pgsql
AgeCommit message (Collapse)AuthorFilesLines
2022-05-04treewide: add meta.mainProgram to many packagesMalo Bourgon1-0/+1
2021-08-03tools/misc: replace name with pname&versionFelix Buehler1-3/+4
2021-01-15pkgs/tools: stdenv.lib -> libBen Siraphob1-3/+3
2020-10-02treewide: fix redirected urls (run 3)Patrick Hilhorst1-1/+1
Related: - 9fc5e7e473874762fdb1b49d17dcf703d48352c3 - 593e11fd944ce961ecf5425c3540df09e4f52265 - 508ae42a0f64c350036d722b84c2e2905bbc5418 Since the last time I ran this script, the Repology API changed, so I had to adapt the script used in the previous PR. The new API should be more robust, so overall this is a positive (no more grepping the error messages for our relevant data but just a nice json structure). Here's the new script I used: ```sh curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \ | sort | uniq | tee script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ``` I will also add this script to `maintainers/scripts`.
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-2/+2
2016-08-02treewide: Add lots of meta.platformsTuomas Tynkkynen1-0/+1
Build-tested on x86_64 Linux & Mac.
2015-01-07Remove obsolete shebangfix scriptEelco Dolstra1-8/+4
2014-11-06Turn more licenses into lib.licenses styleMateusz Kowalczyk1-2/+2
Should eval cleanly, as far as -A tarball tells me. Relevant: issue #2999, issue #739
2014-07-28Turn some license strings into lib.licenses valuesMateusz Kowalczyk1-1/+1
2010-07-28* Get rid of many instances of "args: with args;", and other codingEelco Dolstra1-7/+8
guidelines violations. * Updated libsamplerate to 0.1.7. svn path=/nixpkgs/trunk/; revision=22782
2008-05-31added mysql2pgsql (mysql dump to postrges sql converter) scriptMarc Weber1-0/+27
svn path=/nixpkgs/trunk/; revision=11943