Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / graphics / xlife / default.nix
blob482134269d2b2edf46ce99008cbbe4cd02b9d293
1 { lib, stdenv, fetchsvn, xorg }:
3 stdenv.mkDerivation {
4   pname = "xlife";
5   version = "6.7.5";
7   src = fetchsvn {
8     url = "https://svn.code.sf.net/p/xlife-cal/xlife/trunk";
9     rev = "365";
10     sha256 = "1gadlcp32s179kd7ypxr8cymd6s060p6z4c2vnx94i8bmiw3nn8h";
11   };
13   nativeBuildInputs = with xorg; [ imake gccmakedep ];
14   buildInputs = [ xorg.libX11 ];
16   hardeningDisable = [ "format" ];
17   installPhase = ''
18     install -Dm755 xlife -t $out/bin
19     install -Dm755 lifeconv -t $out/bin
20   '';
22   meta = with lib; {
23     homepage = "http://litwr2.atspace.eu/xlife.php";
24     description = "Conway's Game of Life and other cellular automata, for X";
25     license = licenses.hpndSellVariant;
26     maintainers = with maintainers; [ djanatyn ];
27   };