mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
31 lines
769 B
Nix
31 lines
769 B
Nix
|
{ stdenv, pkgs, xsel, curl, fetchFromGitLab, makeWrapper}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "0x0-${version}";
|
||
|
version = "2018-06-24";
|
||
|
|
||
|
src = fetchFromGitLab {
|
||
|
owner = "somasis";
|
||
|
repo = "scripts";
|
||
|
rev = "70422c83b2ac5856559b0ddaf6e2dc3dbef40dee";
|
||
|
sha256 = "1qpylyxrisy3p2lyirfarfj5yzrdjgsgxwf8gqwljpcjn207hr72";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ makeWrapper ];
|
||
|
|
||
|
installPhase = ''
|
||
|
install -Dm755 0x0 $out/bin/0x0
|
||
|
|
||
|
patchShebangs $out/bin/0x0
|
||
|
wrapProgram $out/bin/0x0 \
|
||
|
--prefix PATH : '${stdenv.lib.makeBinPath [ curl xsel ]}'
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "A client for 0x0.st";
|
||
|
homepage = "https://gitlab.com/somasis/scripts/";
|
||
|
maintainers = [ maintainers.ar1a ];
|
||
|
license = licenses.unlicense;
|
||
|
};
|
||
|
}
|