f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
30 lines
741 B
Nix
30 lines
741 B
Nix
{ stdenv, fetchFromGitHub, udev }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libudev0-shim-${version}";
|
|
version = "1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "archlinux";
|
|
repo = "libudev0-shim";
|
|
rev = "v${version}";
|
|
sha256 = "1460qm6rp1cqnns39lj24z7191m8sbpvbjabqbzb55dkdd2kw50z";
|
|
};
|
|
|
|
buildInputs = [ udev ];
|
|
|
|
installPhase = ''
|
|
name="$(echo libudev.so.*)"
|
|
install -Dm755 "$name" "$out/lib/$name"
|
|
ln -s "$name" "$out/lib/libudev.so.0"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Shim to preserve libudev.so.0 compatibility";
|
|
homepage = https://github.com/archlinux/libudev0-shim;
|
|
platforms = platforms.linux;
|
|
license = licenses.lgpl21;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|