My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/idris-modules/vecspace.nix

24 lines
546 B

{ build-idris-package
, fetchFromGitHub
, contrib
, lib
}:
build-idris-package {
pname = "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 ];
};
}