mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
30 lines
733 B
Nix
30 lines
733 B
Nix
{ stdenv, fetchFromGitHub, udev }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libudev0-shim";
|
|
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 ];
|
|
};
|
|
}
|