summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/trash/default.nix
blob: a239f6607b1fbc431ceb5bab72f35aa829cc962e (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
{ lib, stdenv, fetchFromGitHub, perl, AppKit, Cocoa, ScriptingBridge }:

stdenv.mkDerivation rec {
  version = "0.9.2";
  pname = "trash";

  src = fetchFromGitHub {
    owner = "ali-rantakari";
    repo = "trash";
    rev = "v${version}";
    sha256 = "1d3rc03vgz32faj7qi18iiggxvxlqrj9lsk5jkpa9r1mcs5d89my";
  };

  buildInputs = [ perl Cocoa AppKit ScriptingBridge ];

  patches = [ ./trash.diff ];

  buildPhase = "make all docs";

  installPhase = ''
    mkdir -p $out/bin
    mkdir -p $out/share/man/man1
    install -m 0755 trash $out/bin
    install -m 0444 trash.1 $out/share/man/man1
  '';

  meta = {
    homepage = "https://github.com/ali-rantakari/trash";
    description = "Small command-line program for OS X that moves files or
    folders to the trash.";
    platforms = lib.platforms.darwin;
    license = lib.licenses.mit;
  };
}