summary refs log tree commit diff
path: root/pkgs/applications/misc/taskopen/default.nix
blob: 8933faf5fb012a2e943178bbae8e2958e64a40d3 (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
{ fetchurl, lib, stdenv, makeWrapper, which, perl, perlPackages }:

stdenv.mkDerivation {
  name = "taskopen-1.1.4";
  src = fetchurl {
    url = "https://github.com/ValiValpas/taskopen/archive/v1.1.4.tar.gz";
    sha256 = "774dd89f5c92462098dd6227e181268e5ec9930bbc569f25784000df185c71ba";
  };

  nativeBuildInputs = [ makeWrapper ];
  buildInputs = [ which perl ] ++ (with perlPackages; [ JSON ]);

  installPhase = ''
    # We don't need a DESTDIR and an empty string results in an absolute path
    # (due to the trailing slash) which breaks the build.
    sed 's|$(DESTDIR)/||' -i Makefile

    make PREFIX=$out
    make PREFIX=$out install
  '';

  postFixup = ''
    wrapProgram $out/bin/taskopen \
         --set PERL5LIB "$PERL5LIB"
  '';

  meta = with lib; {
    description = "Script for taking notes and open urls with taskwarrior";
    homepage = "https://github.com/ValiValpas/taskopen";
    platforms = platforms.linux;
    license = lib.licenses.free ;
    maintainers = [ maintainers.winpat ];
  };
}