Merge pull request #57135 from ar1a/_0x0

_0x0: init at 2018-06-24
wip/yesman
Michael Raskin 5 years ago committed by GitHub
commit 92537b0179
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 30
      pkgs/tools/misc/0x0/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,30 @@
{ 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;
};
}

@ -410,6 +410,8 @@ in
### TOOLS
_0x0 = callPackage ../tools/misc/0x0 { };
_1password = callPackage ../applications/misc/1password { };
_9pfs = callPackage ../tools/filesystems/9pfs { };

Loading…
Cancel
Save