mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
f7e390e6d4
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`.
42 lines
1003 B
Nix
42 lines
1003 B
Nix
{ stdenv, fetchFromGitHub, lib
|
|
, zsh, coreutils, inetutils, procps, txt2tags }:
|
|
|
|
with lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "grml-zsh-config";
|
|
version = "0.17.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "grml";
|
|
repo = "grml-etc-core";
|
|
rev = "v${version}";
|
|
sha256 = "09c3f7s2r0cb8g9kgh3xhc8dhr1656g1q9s9i3s5imvknwqii6as";
|
|
};
|
|
|
|
buildInputs = [ zsh coreutils txt2tags procps ]
|
|
++ optional stdenv.isLinux inetutils;
|
|
|
|
buildPhase = ''
|
|
cd doc
|
|
make
|
|
cd ..
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -D -m644 etc/zsh/keephack $out/etc/zsh/keephack
|
|
install -D -m644 etc/zsh/zshrc $out/etc/zsh/zshrc
|
|
|
|
install -D -m644 doc/grmlzshrc.5 $out/share/man/man5/grmlzshrc.5
|
|
ln -s grmlzshrc.5.gz $out/share/man/man5/grml-zsh-config.5.gz
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "grml's zsh setup";
|
|
homepage = "https://grml.org/zsh/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ msteen rvolosatovs ];
|
|
};
|
|
}
|