nixpkgs/pkgs/tools/graphics/imgurbash2/default.nix

32 lines
784 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, bash, curl, xsel }:
stdenv.mkDerivation rec {
2019-03-12 07:04:40 +00:00
pname = "imgurbash2";
2020-05-24 21:33:02 +00:00
version = "3.2";
src = fetchFromGitHub {
owner = "ram-on";
repo = "imgurbash2";
rev = version;
2020-05-24 21:33:02 +00:00
sha256 = "10zs6p17psl1vq5vpkfkf9nrlmibk6v1ds3yxbf1rip1zaqlwxg6";
};
installPhase = ''
mkdir -p $out/bin
cat <<EOF >$out/bin/imgurbash2
#!${bash}/bin/bash
2021-01-15 09:19:50 +00:00
PATH=${lib.makeBinPath [curl xsel]}:\$PATH
EOF
cat imgurbash2 >> $out/bin/imgurbash2
chmod +x $out/bin/imgurbash2
'';
meta = with lib; {
description = "A shell script that uploads images to imgur";
license = licenses.mit;
2021-03-18 15:23:37 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ abbradar ];
homepage = "https://github.com/ram-on/imgurbash2";
};
}