about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/package-management/bunny/default.nix
blob: 8ef808610db7ab4cda3db3210a677c62b59a9a84 (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
{ lib, 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 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 ];
  };
}