Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 18 lines 514 B view raw
1{ lib, stdenv, fetchurl }: 2stdenv.mkDerivation rec { 3 pname = "matio"; 4 version = "1.5.27"; 5 src = fetchurl { 6 url = "mirror://sourceforge/matio/${pname}-${version}.tar.gz"; 7 sha256 = "sha256-CmqgCxjEUStjqNJ5BrB5yMbtQdSyhE96SuWY4Y0i07M="; 8 }; 9 10 meta = with lib; { 11 description = "C library for reading and writing Matlab MAT files"; 12 homepage = "http://matio.sourceforge.net/"; 13 license = licenses.bsd2; 14 maintainers = [ ]; 15 mainProgram = "matdump"; 16 platforms = platforms.all; 17 }; 18}