mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-10 14:14:20 +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.
30 lines
687 B
Nix
30 lines
687 B
Nix
{ lib, stdenv, fetchurl, libGLU, libGL, SDL, SDL_mixer, plib, libjpeg }:
|
|
let
|
|
version = "0.9.13";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "crrcsim";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/crrcsim/${pname}-${version}.tar.gz";
|
|
sha256 = "abe59b35ebb4322f3c48e6aca57dbf27074282d4928d66c0caa40d7a97391698";
|
|
};
|
|
|
|
buildInputs = [
|
|
libGLU libGL SDL SDL_mixer plib libjpeg
|
|
];
|
|
|
|
patches = [
|
|
./gcc6.patch
|
|
];
|
|
|
|
meta = {
|
|
description = "Model-airplane flight simulator";
|
|
mainProgram = "crrcsim";
|
|
maintainers = with lib.maintainers; [ raskin ];
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
license = lib.licenses.gpl2Only;
|
|
};
|
|
}
|