with import {}; stdenv.mkDerivation rec { version = "master"; name = "random-${version}"; src = fetchgit { url = "https://gogs.prunetwork.fr/jpierre03/random.git"; sha256 = "1mfvn8iwznwlxxm89lkb1z6yxig1na5gjyh658v2drn5ic23zcxg"; }; # OUT shouldn't be needed (and shouldn't have worked), but random # developers have forgotten to use PREFIX everywhere, makeFlags = '' OUT=$(out) ''; buildInputs = [ gcc ]; buildPhase = "make build"; installPhase = "make install"; meta = with stdenv.lib; { description = "Program thas exit with 0 or 1 randomly"; license = licenses.cc-by-nc-sa-40; maintainers = [ "Jean-Pierre PRUNARET " ]; platforms = platforms.linux; }; }