Commit graph

18 commits

Author SHA1 Message Date
R. RyanTM c8868a9c48 grml-zsh-config: 0.18.0 -> 0.19.0 2021-07-17 09:28:03 +02:00
R. RyanTM 6d6af7e492 grml-zsh-config: 0.17.4 -> 0.18.0 2021-01-30 02:20:09 +00:00
Profpatsch 4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
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
2021-01-11 10:38:22 +01:00
Patrick Hilhorst f7e390e6d4 treewide: fix redirected urls (run 3)
Related:
 - 9fc5e7e473
 - 593e11fd94
 - 508ae42a0f

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-10-02 09:01:35 -07:00
R. RyanTM 30469ea4c5 grml-zsh-config: 0.17.3 -> 0.17.4 2020-08-07 00:17:58 -07:00
R. RyanTM 05bc2118f1 grml-zsh-config: 0.17.2 -> 0.17.3 2020-07-03 15:37:33 +00:00
R. RyanTM 32b567cbd6 grml-zsh-config: 0.16.2 -> 0.17.2 2020-06-17 12:39:40 -07:00
R. RyanTM 4bcc5be187 grml-zsh-config: 0.16.1 -> 0.16.2 2020-05-27 12:13:48 -07:00
Michael Reilly 84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Robin Gloster 006242fd5a
treewide: fix types for mkDerivation params 2019-12-31 01:23:19 +01:00
R. RyanTM 96630a9e49 grml-zsh-config: 0.16.0 -> 0.16.1
(#72511)
2019-11-13 16:16:07 +01:00
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
R. RyanTM 66488adce8 grml-zsh-config: 0.15.3 -> 0.16.0 (#58688)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/grml-zsh-config/versions
2019-04-08 00:27:26 +02:00
R. RyanTM 7e9720559d grml-zsh-config: 0.15.2 -> 0.15.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/grml-zsh-config/versions
2019-01-03 12:51:16 -05:00
R. RyanTM de0de8903f grml-zsh-config: 0.15.1 -> 0.15.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/grml-zsh-config/versions
2018-12-26 11:23:03 +01:00
R. RyanTM 1a4bb5adc7 grml-zsh-config: 0.15.0 -> 0.15.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/grml-zsh-config/versions
2018-11-25 04:25:39 -05:00
R. RyanTM 67af5ba643 grml-zsh-config: 0.14.3 -> 0.15.0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/grml-zsh-config/versions.

These checks were done:

- built on NixOS

- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- directory tree listing: https://gist.github.com/f301ffb4e2c7eb9a9e2a03bc7291a958
- du listing: https://gist.github.com/810ea8b2fb0bfc9f2bd5eee5e90fce2a
2018-06-08 08:06:37 -07:00
Matthew Bauer ddaea6ac77 pkgs/shells: move extensions to subdirs
These are not reaal shells and should go into their parent shell
directory.
2018-04-17 14:47:32 -05:00