My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/os-specific/linux/libudev0-shim/default.nix

29 lines
731 B

{ lib, 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 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 ];
};
}