libudev0-shim: init at 1
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user