linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / agda / functional-linear-algebra / default.nix
blob15603f293b4f44b12965efdc9fabf206de2d5516
1 { fetchFromGitHub, lib, mkDerivation, standard-library }:
3 mkDerivation rec {
4   version = "0.2";
5   pname = "functional-linear-algebra";
7   buildInputs = [ standard-library ];
9   src = fetchFromGitHub {
10     repo = "functional-linear-algebra";
11     owner = "ryanorendorff";
12     rev = "v${version}";
13     sha256 = "1dz7kh92df23scl1pkhn70n1f2v3d0x84liphn9kpsd6wlsxccxc";
14   };
16   preConfigure = ''
17     sh generate-everything.sh
18   '';
20   meta = with lib; {
21     homepage = "https://github.com/ryanorendorff/functional-linear-algebra";
22     description = ''
23       Formalizing linear algebra in Agda by representing matrices as functions
24       from one vector space to another.
25     '';
26     license = licenses.bsd3;
27     platforms = platforms.unix;
28     maintainers = with maintainers; [ ryanorendorff ];
29   };