mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
65 lines
1.4 KiB
Nix
65 lines
1.4 KiB
Nix
|
{ lib
|
||
|
, rustPlatform
|
||
|
, fetchFromGitHub
|
||
|
, pkg-config
|
||
|
, atk
|
||
|
, cairo
|
||
|
, gdk-pixbuf
|
||
|
, glib
|
||
|
, gtk3
|
||
|
, openssl
|
||
|
, pango
|
||
|
}:
|
||
|
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "noaa-apt";
|
||
|
version = "1.2.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "martinber";
|
||
|
repo = "noaa-apt";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "0fqki4a9c54rixdz5bpswvn433f9saw6yazgw4av3xdd7g2fdvvj";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
pkg-config
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
atk
|
||
|
cairo
|
||
|
gdk-pixbuf
|
||
|
glib
|
||
|
gtk3
|
||
|
openssl
|
||
|
pango
|
||
|
];
|
||
|
|
||
|
cargoSha256 = "1pzcq31inazmc9cz31fspzqkp0lpkjid8ai3g17sin1pfzby5jlh";
|
||
|
|
||
|
preBuild = ''
|
||
|
# Used by macro pointing to resource location at compile time.
|
||
|
export NOAA_APT_RES_DIR=$out/share/noaa-apt
|
||
|
'';
|
||
|
|
||
|
postInstall = ''
|
||
|
# Resources.
|
||
|
mkdir -p $out/share/noaa-apt
|
||
|
cp -R $src/res/* $out/share/noaa-apt/
|
||
|
|
||
|
# Desktop icon.
|
||
|
install -Dm644 -t $out/share/applications $src/debian/ar.com.mbernardi.noaa-apt.desktop
|
||
|
install -Dm644 -t $out/share/icons/hicolor/48x48/apps $src/debian/noaa-apt.png
|
||
|
install -Dm644 -t $out/share/icons/hicolor/scalable/apps $src/debian/noaa-apt.svg
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "NOAA APT image decoder.";
|
||
|
homepage = "http://noaa-apt.mbernardi.com.ar/";
|
||
|
license = licenses.gpl3Only;
|
||
|
maintainers = with maintainers; [ trepetti ];
|
||
|
changelog = "https://github.com/martinber/noaa-apt/releases/tag/v${version}";
|
||
|
};
|
||
|
}
|