lib.packagesFromDirectoryRecursive: Improved documentation (#359898)
[NixPkgs.git] / pkgs / os-specific / darwin / duti / default.nix
blob6d46f002ae133036c20ae62bce1e5a2ecfc6c4ce
2   stdenv,
3   lib,
4   fetchFromGitHub,
5   autoreconfHook,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "duti";
10   version = "1.5.5pre";
11   src = fetchFromGitHub {
12     owner = "moretension";
13     repo = pname;
14     rev = "fe3d3dc411bcea6af7a8cbe53c0e08ed5ecacdb2";
15     sha256 = "1pg4i6ghpib2gy1sqpml7dbnhr1vbr43fs2pqkd09i4w3nmgpic9";
16   };
18   patches = [
19     ./buildConfigure.patch
20   ];
22   nativeBuildInputs = [ autoreconfHook ];
24   meta = with lib; {
25     description = "Command-line tool to select default applications for document types and URL schemes on Mac OS X";
26     longDescription = ''
27       duti is a command-line utility capable of setting default applications for
28       various document types on Mac OS X, using Apple's Uniform Type Identifiers. A
29       UTI is a unique string describing the format of a file's content. For instance,
30       a Microsoft Word document has a UTI of com.microsoft.word.doc. Using duti, the
31       user can change which application acts as the default handler for a given UTI.
32     '';
33     maintainers = with maintainers; [
34       matthewbauer
35       n-hass
36     ];
37     platforms = platforms.darwin;
38     license = licenses.publicDomain;
39     homepage = "https://github.com/moretension/duti/";
40   };