lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.05-pre 32 lines 674 B view raw
1{ lib, stdenv, fetchFromGitHub, ncurses }: 2 3stdenv.mkDerivation { 4 pname = "netris"; 5 version = "0.52"; 6 7 src = fetchFromGitHub { 8 owner = "naclander"; 9 repo = "netris"; 10 rev = "6773c9b2d39a70481a5d6eb5368e9ced6229ad2b"; 11 sha256 = "0gmxbpn50pnffidwjchkzph9rh2jm4wfq7hj8msp5vhdq5h0z9hm"; 12 }; 13 14 buildInputs = [ 15 ncurses 16 ]; 17 18 configureScript = "./Configure"; 19 dontAddPrefix = true; 20 21 installPhase = '' 22 mkdir -p $out/bin 23 cp ./netris $out/bin 24 ''; 25 26 meta = with lib; { 27 description = "A free networked version of T*tris"; 28 license = licenses.gpl2; 29 maintainers = with maintainers; [ patryk27 ]; 30 platforms = platforms.linux; 31 }; 32}