mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
33 lines
709 B
Nix
33 lines
709 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, libpng
|
|
, libsndfile
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "aptdec";
|
|
version = "1.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Xerbo";
|
|
repo = "aptdec";
|
|
rev = "v${version}";
|
|
hash = "sha256-5Pr2PlCPSEIWnThJXKcQEudmxhLJC2sVa9BfAOEKHB4=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ libpng libsndfile ];
|
|
|
|
meta = with lib; {
|
|
description = "NOAA APT satellite imagery decoding library";
|
|
mainProgram = "aptdec";
|
|
homepage = "https://github.com/Xerbo/aptdec";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ alexwinter ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|