nixpkgs/pkgs/development/idris-modules/vecspace.nix
2018-07-02 06:13:01 +02:00

25 lines
543 B
Nix

{ build-idris-package
, fetchFromGitHub
, contrib
, lib
}:
build-idris-package {
name = "vecspace";
version = "2018-01-12";
idrisDeps = [ contrib ];
src = fetchFromGitHub {
owner = "clayrat";
repo = "idris-vecspace";
rev = "6830fa13232f25e9874b3f857b79508b5f82cb99";
sha256 = "1dwz69cmzblyh7lnyqq2gp0a042z7h02sh5q5wf4xb500vizwkq2";
};
meta = {
description = "Abstract vector spaces in Idris";
homepage = https://github.com/clayrat/idris-vecspace;
maintainers = [ lib.maintainers.brainrape ];
};
}