mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
71 lines
2 KiB
Nix
71 lines
2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, libpng, python3
|
|
, libGLU, libGL, qtbase, wrapQtAppsHook, ncurses
|
|
, cmake, flex, lemon
|
|
, makeDesktopItem, copyDesktopItems
|
|
}:
|
|
|
|
let
|
|
gitRev = "8b805c674adad536f9dd552b4be75fadcb3c7db6";
|
|
gitBranch = "develop";
|
|
gitTag = "0.9.3";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "antimony";
|
|
version = "2022-11-23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mkeeter";
|
|
repo = "antimony";
|
|
rev = gitRev;
|
|
sha256 = "NmOuBewfHqtAim2cNP62LXgRjVWuVUGweV46sY1qjGk=";
|
|
};
|
|
|
|
patches = [ ./paths-fix.patch ];
|
|
|
|
postPatch = ''
|
|
sed -i "s,/usr/local,$out,g" \
|
|
app/CMakeLists.txt app/app/app.cpp app/app/main.cpp
|
|
sed -i "s,python3,${python3.executable}," CMakeLists.txt
|
|
'';
|
|
|
|
postInstall = lib.optionalString stdenv.isLinux ''
|
|
install -Dm644 $src/deploy/icon.svg $out/share/icons/hicolor/scalable/apps/antimony.svg
|
|
install -Dm644 ${./mimetype.xml} $out/share/mime/packages/antimony.xml
|
|
'';
|
|
|
|
buildInputs = [
|
|
libpng python3 python3.pkgs.boost
|
|
libGLU libGL qtbase ncurses
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake flex lemon wrapQtAppsHook copyDesktopItems ];
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "antimony";
|
|
desktopName = "Antimony";
|
|
comment="Tree-based Modeler";
|
|
genericName = "CAD Application";
|
|
exec = "antimony %f";
|
|
icon = "antimony";
|
|
categories = [ "Graphics" "Science" "Engineering" ];
|
|
mimeTypes = [ "application/x-extension-sb" "application/x-antimony" ];
|
|
startupWMClass = "antimony";
|
|
})
|
|
];
|
|
|
|
cmakeFlags= [
|
|
"-DGITREV=${gitRev}"
|
|
"-DGITTAG=${gitTag}"
|
|
"-DGITBRANCH=${gitBranch}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Computer-aided design (CAD) tool from a parallel universe";
|
|
mainProgram = "antimony";
|
|
homepage = "https://github.com/mkeeter/antimony";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|