My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/applications/graphics/xmountains/default.nix

25 lines
717 B

{ lib, stdenv, fetchFromGitHub, xlibsWrapper, xorg }:
stdenv.mkDerivation rec {
pname = "xmountains";
version = "2.10";
src = fetchFromGitHub {
owner = "spbooth";
repo = pname;
rev = "aa3bcbfed228adf3fff0fe4295589f13fc194f0b";
sha256 = "0dx4n2y736lv04sj41cp1dw8n5zkw5gyd946a6zsiv0k796s9ra9";
};
buildInputs = [ xlibsWrapper xorg.xbitmaps ];
nativeBuildInputs = with xorg; [ imake gccmakedep ];
installPhase = "install -Dm755 xmountains -t $out/bin";
meta = with lib; {
description = "X11 based fractal landscape generator";
homepage = "https://spbooth.github.io/xmountains";
license = licenses.hpndSellVariant;
maintainers = with maintainers; [ djanatyn ];
};
}