1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/libdrm/default.nix

10 lines
201 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libdrm-2.0";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/libdrm-2.0.tar.gz;
md5 = "9d1aab104eb757ceeb2c1a6d38d57411";
};
}