32 lines
786 B
Nix
32 lines
786 B
Nix
{ lib, stdenv, fetchFromGitHub, bash, curl, xsel }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "imgurbash2";
|
|
version = "3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ram-on";
|
|
repo = "imgurbash2";
|
|
rev = version;
|
|
sha256 = "10zs6p17psl1vq5vpkfkf9nrlmibk6v1ds3yxbf1rip1zaqlwxg6";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cat <<EOF >$out/bin/imgurbash2
|
|
#!${bash}/bin/bash
|
|
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;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
homepage = "https://github.com/ram-on/imgurbash2";
|
|
};
|
|
}
|