summary refs log tree commit diff
path: root/pkgs/tools/package-management/bunny/default.nix
blob: 938a762ba303aca5ad11216a8e158c36ed3870f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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 ];
  };
}