summary refs log tree commit diff
path: root/pkgs/tools/system/yeshup/default.nix
blob: 42060aed295a0ec92546c520c81efea9beb54a2c (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 {
  pname = "yeshup";
  version = "unstable-2013-10-29";

  src = fetchFromGitHub {
    owner = "RhysU";
    repo  = "yeshup";
    rev = "5461a8f957c686ccd0240be3f0fd8124d7381b08";
    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 ];
  };
}