nixpkgs/pkgs/os-specific/linux/libudev0-shim/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
731 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, udev }:
2016-12-28 15:50:54 +00:00
stdenv.mkDerivation rec {
pname = "libudev0-shim";
2016-12-28 15:50:54 +00:00
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; {
2016-12-28 15:50:54 +00:00
description = "Shim to preserve libudev.so.0 compatibility";
homepage = "https://github.com/archlinux/libudev0-shim";
2016-12-28 15:50:54 +00:00
platforms = platforms.linux;
license = licenses.lgpl21;
maintainers = with maintainers; [ abbradar ];
};
}