depot/third_party/nixpkgs/pkgs/tools/misc/ix/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

36 lines
734 B
Nix

{ 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;
};
}