mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 20:36:27 +00:00
21 lines
543 B
Nix
21 lines
543 B
Nix
{ stdenv, fetchurl, pkgconfig, udev, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libgudev-${version}";
|
|
version = "231";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.gnome.org/sources/libgudev/${version}/${name}.tar.xz";
|
|
sha256 = "15iz0qp57qy5pjrblsn36l0chlncqggqsg8h8i8c71499afzj7iv";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig udev glib ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://wiki.gnome.org/Projects/libgudev;
|
|
maintainers = [ maintainers.eelco ];
|
|
platforms = platforms.linux;
|
|
license = licenses.lgpl2Plus;
|
|
};
|
|
}
|