summary refs log blame commit diff
path: root/pkgs/os-specific/linux/android-udev-rules/default.nix
blob: 677eb890a5ba7808df0c32eadcb906522dabadca (plain) (tree)
1
2
3
4
5
6
7
8
9
                            
 

                                         
                       
 


                                

                                                                    






                                                                      
                                                              





                                                                                          
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  name = "android-udev-rules-${version}";
  version = "20160805";

  src = fetchFromGitHub {
    owner = "M0Rf30";
    repo = "android-udev-rules";
    rev = version;
    sha256 = "0sdf3insqs73cdzmwl3lqy7nj82f1lprxd3vm0jh3qpf0sd1k93c";
  };

  installPhase = ''
    install -D 51-android.rules $out/lib/udev/rules.d/51-android.rules
  '';

  meta = with stdenv.lib; {
    homepage = "https://github.com/M0Rf30/android-udev-rules";
    description = "Android udev rules list aimed to be the most comprehensive on the net";
    platforms = platforms.linux;
    license = licenses.gpl3;
    maintainers = with maintainers; [ abbradar ];
  };
}