at v206 22 lines 627 B view raw
1{ stdenv, agda, fetchurl }: 2 3agda.mkDerivation (self: rec { 4 version = "0.1"; 5 name = "agda-base-${version}"; 6 7 src = fetchurl { 8 url = "https://github.com/pcapriotti/agda-base/archive/v${version}.tar.gz"; 9 sha256 = "124h06p7jdiqr2x6r46sfab9r0cgb0fznr2qs5i1psl5yf3z74h8"; 10 }; 11 12 sourceDirectories = [ "./." ]; 13 everythingFile = "README.agda"; 14 15 meta = { 16 homepage = "https://github.com/pcapriotti/agda-base"; 17 description = "Base library for HoTT in Agda"; 18 license = stdenv.lib.licenses.bsd3; 19 platforms = stdenv.lib.platforms.unix; 20 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 21 }; 22})