4a7f99d55d
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
41 lines
1.3 KiB
Nix
41 lines
1.3 KiB
Nix
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, bashInteractive, urlgrabber
|
|
, m2crypto, rpm, chardet
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "osc";
|
|
version = "0.170.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "openSUSE";
|
|
repo = "osc";
|
|
rev = version;
|
|
sha256 = "10dj9kscz59qm8rw5084gf0m8ail2rl7r8rg66ij92x88wvi9mbz";
|
|
};
|
|
|
|
buildInputs = [ bashInteractive ]; # needed for bash-completion helper
|
|
checkInputs = [ rpm ];
|
|
propagatedBuildInputs = [ urlgrabber m2crypto chardet ];
|
|
|
|
postInstall = ''
|
|
ln -s $out/bin/osc-wrapper.py $out/bin/osc
|
|
install -D -m444 osc.fish $out/etc/fish/completions/osc.fish
|
|
install -D -m555 dist/osc.complete $out/share/bash-completion/helpers/osc-helper
|
|
mkdir -p $out/share/bash-completion/completions
|
|
cat >>$out/share/bash-completion/completions/osc <<EOF
|
|
test -z "\$BASH_VERSION" && return
|
|
complete -o default _nullcommand >/dev/null 2>&1 || return
|
|
complete -r _nullcommand >/dev/null 2>&1 || return
|
|
complete -o default -C $out/share/bash-completion/helpers/osc-helper osc
|
|
EOF
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/openSUSE/osc";
|
|
description = "opensuse-commander with svn like handling";
|
|
maintainers = [ maintainers.peti ];
|
|
license = licenses.gpl2;
|
|
};
|
|
|
|
}
|