about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/un/unrar-free/package.nix
blob: 8c34f3f0aa819d5a549b2b6998bf8295606f5576 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{ lib
, stdenv
, fetchFromGitLab
, autoreconfHook
, libarchive
, pkg-config
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "unrar-free";
  version = "0.2.0";

  src = fetchFromGitLab {
    owner = "bgermann";
    repo = "unrar-free";
    rev = finalAttrs.version;
    hash = "sha256-ONLc/mJt13Lfd61qraCAB9jOPzdPxoYLzq69llRf+BU=";
  };

  nativeBuildInputs = [ autoreconfHook pkg-config ];

  buildInputs = [ libarchive ];

  meta = {
    description = "Free utility to extract files from RAR archives";
    longDescription = ''
      unrar-free is a free software version of the non-free unrar utility.

      This program is a simple command-line front-end to libarchive, and can list
      and extract RAR archives but also other formats supported by libarchive.

      It does not rival the non-free unrar in terms of features, but
      special care has been taken to ensure it meets most user's needs.
    '';
    homepage = "https://gitlab.com/bgermann/unrar-free";
    license = lib.licenses.gpl2Plus;
    mainProgram = "unrar";
    maintainers = with lib.maintainers; [ thiagokokada ];
    platforms = lib.platforms.unix;
    broken = stdenv.isDarwin;
  };
})