mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 01:03:25 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
27 lines
734 B
Nix
27 lines
734 B
Nix
{ lib, stdenv, fetchFromGitHub, xorg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xmountains";
|
|
version = "2.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spbooth";
|
|
repo = pname;
|
|
rev = "aa3bcbfed228adf3fff0fe4295589f13fc194f0b";
|
|
sha256 = "0dx4n2y736lv04sj41cp1dw8n5zkw5gyd946a6zsiv0k796s9ra9";
|
|
};
|
|
|
|
buildInputs = [ xorg.xbitmaps xorg.libX11 ];
|
|
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 ];
|
|
mainProgram = "xmountains";
|
|
};
|
|
}
|