summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/graphics/xmountains/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/graphics/xmountains/default.nix')
-rw-r--r--pkgs/applications/graphics/xmountains/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/xmountains/default.nix b/pkgs/applications/graphics/xmountains/default.nix
new file mode 100644
index 000000000000..c31f7923c990
--- /dev/null
+++ b/pkgs/applications/graphics/xmountains/default.nix
@@ -0,0 +1,25 @@
+{ 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 ];
+ };
+}