Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
644 B
Nix
31 lines
644 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "yeshup";
|
|
version = "0-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 lib; {
|
|
homepage = "https://github.com/RhysU/yeshup";
|
|
platforms = platforms.linux;
|
|
license = licenses.cc-by-sa-30; # From Stackoverflow answer
|
|
maintainers = with maintainers; [ obadz ];
|
|
mainProgram = "yeshup";
|
|
};
|
|
}
|