summary refs log blame commit diff
path: root/pkgs/tools/package-management/bunny/default.nix
blob: 938a762ba303aca5ad11216a8e158c36ed3870f1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                            
                  
                  




                         
                                                                    










                                                                                   
                                               

    
{ stdenv, fetchFromGitLab }:

stdenv.mkDerivation rec {
  pname = "bunny";
  version = "1.3";

  src = fetchFromGitLab {
    owner = "tim241";
    repo = "bunny";
    rev = version;
    sha256 = "0nh2h5kj9b0nkb6yrzf4if7anfdmy9vijzy4bl3s7qck0nzbpy8s";
  };

  dontBuild = true;

  makeFlags = [ "prefix=$(out)" ];

  meta = with stdenv.lib; {
    description = "A simple shell script wrapper around multiple package managers";
    homepage = https://gitlab.com/tim241/bunny;
    license = licenses.gpl3;
    platforms = platforms.all;
    maintainers = with maintainers; [ buffet ];
  };
}