summary refs log tree commit diff
path: root/pkgs/tools/system/yeshup/default.nix
blob: 8cea90b6758dae98d398a40b07da1f1853e6cf95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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.linux;
    license = licenses.cc-by-sa-30; # From Stackoverflow answer
    maintainers = with maintainers; [ obadz ];
  };
}