nixpkgs/pkgs/development/libraries/agda/categories/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

25 lines
777 B
Nix

{ stdenv, agda, fetchgit, AgdaStdlib }:
agda.mkDerivation (self: rec {
version = "33409120d071656f5198c658145889ae2e86249c";
name = "categories-${version}";
src = fetchgit {
url = "https://github.com/copumpkin/categories.git";
rev = version;
sha256 = "15x834f7jn2s816b9vz8nm8p424ppzv6v9nayaawyl43qmaaaa5p";
};
buildDepends = [ AgdaStdlib ];
sourceDirectories = [ "Categories" "Graphs" ];
meta = {
homepage = https://github.com/copumpkin/categories;
description = "Categories parametrized by morphism equality, in Agda";
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
broken = true; # doesn't work due to new agdastdlib, see #9471
};
})