diff options
author | Elis Hirwing | 2019-02-10 10:55:33 +0100 |
---|---|---|
committer | Elis Hirwing | 2019-02-10 10:55:33 +0100 |
commit | 1540ab34befecf78f7ab8209100ebde317cd33e0 (patch) | |
tree | 33832c24fa12719b89b576ec9d85e573221d8271 /pkgs/applications/misc/tqsl/default.nix | |
parent | 2aa0ba2c9b38449b09cdb64d2e320a1dfa28b85c (diff) |
tqsl: Move from misc to radio
Diffstat (limited to 'pkgs/applications/misc/tqsl/default.nix')
-rw-r--r-- | pkgs/applications/misc/tqsl/default.nix | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/applications/misc/tqsl/default.nix b/pkgs/applications/misc/tqsl/default.nix deleted file mode 100644 index f001cbcaab92..000000000000 --- a/pkgs/applications/misc/tqsl/default.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ stdenv, fetchurl, makeWrapper, cmake, expat, openssl, zlib, db, curl, wxGTK }: - -stdenv.mkDerivation rec { - name = "tqsl-${version}"; - version = "2.3.1"; - - src = fetchurl { - url = "https://www.arrl.org/files/file/LoTW%20Instructions/${name}.tar.gz"; - sha256 = "10cjlilampwl10hwb7m28m5z9gyrscvvc1rryfjnhj9q2x4ppgxv"; - }; - - nativeBuildInputs = [ makeWrapper ]; - buildInputs = [ - cmake - expat - openssl - zlib - db - curl - wxGTK - ]; - - patches = [ ./cmake_lib_path.patch ]; - - meta = with stdenv.lib; { - description = "Software for using the ARRL Logbook of the World"; - homepage = https://lotw.arrl.org/; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = [ maintainers.dpflug ]; - }; -} |