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.
36 lines
1.2 KiB
Nix
36 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, unzip, xorg, libGLU, libGL }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "AntTweakBar";
|
|
version = "1.16";
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
buildInputs = [ xorg.libX11 libGLU libGL ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/anttweakbar/AntTweakBar_${lib.replaceStrings ["."] [""] version}.zip";
|
|
sha256 = "0z3frxpzf54cjs07m6kg09p7nljhr7140f4pznwi7srwq4cvgkpv";
|
|
};
|
|
|
|
postPatch = "cd src";
|
|
installPhase = ''
|
|
mkdir -p $out/lib/
|
|
cp ../lib/{libAntTweakBar.so,libAntTweakBar.so.1,libAntTweakBar.a} $out/lib/
|
|
cp -r ../include $out/
|
|
'';
|
|
|
|
meta = {
|
|
description = "Add a light/intuitive GUI to OpenGL applications";
|
|
longDescription = ''
|
|
A small and easy-to-use C/C++ library that allows to quickly add a light
|
|
and intuitive graphical user interface into graphic applications based on OpenGL
|
|
(compatibility and core profiles), DirectX 9, DirectX 10 or DirectX 11
|
|
to interactively tweak parameters on-screen
|
|
'';
|
|
homepage = "https://anttweakbar.sourceforge.net/";
|
|
license = lib.licenses.zlib;
|
|
maintainers = [ lib.maintainers.razvan ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|