···1{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, fftw, hackrf, libusb1 }:
23stdenv.mkDerivation {
4- name = "kalibrate-hackrf-unstable-20160827";
056 # There are no tags/releases, so use the latest commit from git master.
7 # Currently, the latest commit is from 2016-07-03.
···1{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, fftw, hackrf, libusb1 }:
23stdenv.mkDerivation {
4+ pname = "kalibrate-hackrf";
5+ version = "unstable-2016-08-27";
67 # There are no tags/releases, so use the latest commit from git master.
8 # Currently, the latest commit is from 2016-07-03.
+2-1
pkgs/applications/radio/kalibrate-rtl/default.nix
···1{ lib, stdenv, fetchgit, autoreconfHook, pkg-config, fftw, rtl-sdr, libusb1 }:
23stdenv.mkDerivation {
4- name = "kalibrate-rtl-20131214";
056 # There are no tags/releases, so use the latest commit from git master.
7 # Currently, the latest commit is from 2013-12-14.
···1{ lib, stdenv, fetchgit, autoreconfHook, pkg-config, fftw, rtl-sdr, libusb1 }:
23stdenv.mkDerivation {
4+ pname = "kalibrate-rtl";
5+ version = "2013-12-14";
67 # There are no tags/releases, so use the latest commit from git master.
8 # Currently, the latest commit is from 2013-12-14.
···1-{lib, stdenv, fetchurl, readline, perl, libharu, libX11, libpng, libXt, zlib}:
23-stdenv.mkDerivation {
4- name = "emboss-6.6.0";
005 src = fetchurl {
6- url = "ftp://emboss.open-bio.org/pub/EMBOSS/EMBOSS-6.6.0.tar.gz";
7 sha256 = "7184a763d39ad96bb598bfd531628a34aa53e474db9e7cac4416c2a40ab10c6e";
8 };
9···16 '';
1718 meta = {
19- description = "The European Molecular Biology Open Software Suite";
20 longDescription = ''EMBOSS is a free Open Source software analysis package
21 specially developed for the needs of the molecular biology (e.g. EMBnet)
22 user community, including libraries. The software automatically copes with
23 data in a variety of formats and even allows transparent retrieval of
24 sequence data from the web.'';
25- license = lib.licenses.gpl2;
26- homepage = "http://emboss.sourceforge.net/";
27 };
28}
···1+{ lib, stdenv, fetchurl, readline, perl, libharu, libX11, libpng, libXt, zlib }:
23+stdenv.mkDerivation rec {
4+ pname = "emboss";
5+ version = "6.6.0";
6+7 src = fetchurl {
8+ url = "ftp://emboss.open-bio.org/pub/EMBOSS/EMBOSS-${version}.tar.gz";
9 sha256 = "7184a763d39ad96bb598bfd531628a34aa53e474db9e7cac4416c2a40ab10c6e";
10 };
11···18 '';
1920 meta = {
21+ description = "The European Molecular Biology Open Software Suite";
22 longDescription = ''EMBOSS is a free Open Source software analysis package
23 specially developed for the needs of the molecular biology (e.g. EMBnet)
24 user community, including libraries. The software automatically copes with
25 data in a variety of formats and even allows transparent retrieval of
26 sequence data from the web.'';
27+ license = lib.licenses.gpl2;
28+ homepage = "http://emboss.sourceforge.net/";
29 };
30}