4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
30 lines
720 B
Nix
30 lines
720 B
Nix
{ lib, stdenv, fetchurl, makeWrapper, cmake, expat, openssl, zlib, db, curl, wxGTK }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tqsl";
|
|
version = "2.5.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.arrl.org/files/file/LoTW%20Instructions/${pname}-${version}.tar.gz";
|
|
sha256 = "00v4n8pvi5qi2psjnrw611w5gg5bdlaxbsny535fsci3smyygpc0";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake makeWrapper ];
|
|
buildInputs = [
|
|
expat
|
|
openssl
|
|
zlib
|
|
db
|
|
curl
|
|
wxGTK
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Software for using the ARRL Logbook of the World";
|
|
homepage = "https://www.arrl.org/tqsl-download";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.dpflug ];
|
|
};
|
|
}
|