mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
99 lines
2.4 KiB
Nix
99 lines
2.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, alsa-lib
|
|
, copyDesktopItems
|
|
, gtk3
|
|
, makeDesktopItem
|
|
, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "free42";
|
|
version = "3.1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "thomasokken";
|
|
repo = "free42";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-XAYi4CBOx5KkqJyz6WkPlWC+bfbEReyaSv9SRCe6TDw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
copyDesktopItems
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
gtk3
|
|
];
|
|
|
|
postPatch = ''
|
|
sed -i -e "s|/bin/ls|ls|" gtk/Makefile
|
|
'';
|
|
|
|
dontConfigure = true;
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "com.thomasokken.free42bin";
|
|
desktopName = "Free42Bin";
|
|
genericName = "Calculator";
|
|
exec = "free42bin";
|
|
type = "Application";
|
|
comment = "A software clone of HP-42S Calculator";
|
|
categories = [ "Utility" "Calculator" ];
|
|
})
|
|
(makeDesktopItem {
|
|
name = "com.thomasokken.free42dec";
|
|
desktopName = "Free42Dec";
|
|
genericName = "Calculator";
|
|
exec = "free42dec";
|
|
type = "Application";
|
|
comment = "A software clone of HP-42S Calculator";
|
|
categories = [ "Utility" "Calculator" ];
|
|
})
|
|
];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
make -C gtk cleaner
|
|
make --jobs=$NIX_BUILD_CORES -C gtk
|
|
make -C gtk clean
|
|
make --jobs=$NIX_BUILD_CORES -C gtk BCD_MATH=1
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install --directory $out/bin \
|
|
$out/share/doc/free42 \
|
|
$out/share/free42/skins \
|
|
$out/share/icons/hicolor/48x48/apps \
|
|
$out/share/icons/hicolor/128x128/apps
|
|
|
|
install -m755 gtk/free42dec gtk/free42bin $out/bin
|
|
install -m644 gtk/README $out/share/doc/free42/README-GTK
|
|
install -m644 README $out/share/doc/free42/README
|
|
|
|
install -m644 gtk/icon-48x48.xpm $out/share/icons/hicolor/48x48/apps
|
|
install -m644 gtk/icon-128x128.xpm $out/share/icons/hicolor/128x128/apps
|
|
install -m644 skins/* $out/share/free42/skins
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/thomasokken/free42";
|
|
description = "A software clone of HP-42S Calculator";
|
|
license = with lib.licenses; [ gpl2Only ];
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
mainProgram = "free42dec";
|
|
platforms = with lib.platforms; unix;
|
|
};
|
|
})
|