about summary refs log tree commit diff
path: root/pkgs/tools/misc/ix/default.nix
blob: 52781f8a08bb3efead4012658d2fba425a2a064f (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
{ lib, resholve, fetchurl, bash, curl }:

resholve.mkDerivation {
  pname = "ix";
  version = "20190815";

  src = fetchurl {
    url = "http://ix.io/client";
    hash = "sha256-p/j/Nz7tzLJV7HgUwVsiwN1WxCx4Por+HyRgFTTRgnU=";
  };

  dontUnpack = true;

  installPhase = ''
    runHook preInstall

    install -Dm555 $src $out/bin/ix
    substituteInPlace $out/bin/ix \
      --replace '$echo ' ""

    runHook postInstall
  '';

  solutions.default = {
    scripts = [ "bin/ix" ];
    interpreter = "${lib.getExe bash}";
    inputs = [ curl ];
  };

  meta = with lib; {
    homepage = "http://ix.io";
    description = "Command line pastebin";
    maintainers = with maintainers; [ peterhoeg ];
    platforms = platforms.all;
    mainProgram = "ix";
  };
}