mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
yeshup: init at 5461a8f
This commit is contained in:
parent
0bf8a1a86d
commit
71ac0cd55e
25
pkgs/tools/system/yeshup/default.nix
Normal file
25
pkgs/tools/system/yeshup/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "yeshup-${builtins.substring 0 7 rev}";
|
||||
rev = "5461a8f957c686ccd0240be3f0fd8124d7381b08";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "RhysU";
|
||||
repo = "yeshup";
|
||||
inherit rev;
|
||||
sha256 = "1wwbc158y46jsmdi1lp0m3dlbr9kvzvwxfvzj6646cpy9d6h21v9";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp -v yeshup $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/RhysU/yeshup;
|
||||
platforms = platforms.all;
|
||||
license = licenses.cc-by-sa-30; # From Stackoverflow answer
|
||||
maintainers = with maintainers; [ obadz ];
|
||||
};
|
||||
}
|
|
@ -3893,6 +3893,8 @@ let
|
|||
|
||||
yaml-merge = callPackage ../tools/text/yaml-merge { };
|
||||
|
||||
yeshup = callPackage ../tools/system/yeshup { };
|
||||
|
||||
# To expose more packages for Yi, override the extraPackages arg.
|
||||
yi = callPackage ../applications/editors/yi/wrapper.nix { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue