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



                                                              
                         
                               
                       
 


                                
                  
                                                                   


                   
                      
                                                                      
                       

     
                    
                                                              

                                                                                          
                                


                                                 
{ lib, stdenv, fetchFromGitHub }:

## Usage
# In NixOS, simply add this package to services.udev.packages:
#   services.udev.packages = [ pkgs.android-udev-rules ];

stdenv.mkDerivation rec {
  pname = "android-udev-rules";
  version = "20231030";

  src = fetchFromGitHub {
    owner = "M0Rf30";
    repo = "android-udev-rules";
    rev = version;
    sha256 = "sha256-+h0FwvfIoluhldOi6cgVDvmNWe1Lvj1SV3pL8Zh+gRM=";
  };

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

  meta = with 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.gpl3Plus;
    maintainers = with maintainers; [ abbradar ];
  };
}