Merge pull request #110830 from iblech/patch-agdastdlib15

agdaPackages.standard-library: 1.4 -> 1.5
This commit is contained in:
Anderson Torres 2021-02-03 15:56:55 -03:00 committed by GitHub
commit 519c4f1727
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 9 deletions

View File

@ -1,14 +1,14 @@
{ lib, mkDerivation, fetchFromGitHub, standard-library }: { lib, mkDerivation, fetchFromGitHub, standard-library }:
mkDerivation rec { mkDerivation rec {
version = "0.1.4"; version = "0.1.5";
pname = "agda-categories"; pname = "agda-categories";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "agda"; owner = "agda";
repo = "agda-categories"; repo = "agda-categories";
rev = "v${version}"; rev = "v${version}";
sha256 = "1bcvmxcnl1ig38fxqkx8ydidhxq6a0kn2k9waf0lygh4ap928sgk"; sha256 = "1b5gj0r2z5fhh7k8b9s2kx4rjv8gi5y8ijgrbcvsa06n3acap3lm";
}; };
buildInputs = [ standard-library ]; buildInputs = [ standard-library ];

View File

@ -1,7 +1,7 @@
{ fetchFromGitHub, lib, mkDerivation, standard-library }: { fetchFromGitHub, lib, mkDerivation, standard-library }:
mkDerivation rec { mkDerivation rec {
version = "0.1"; version = "0.2";
pname = "functional-linear-algebra"; pname = "functional-linear-algebra";
buildInputs = [ standard-library ]; buildInputs = [ standard-library ];
@ -10,9 +10,13 @@ mkDerivation rec {
repo = "functional-linear-algebra"; repo = "functional-linear-algebra";
owner = "ryanorendorff"; owner = "ryanorendorff";
rev = "v${version}"; rev = "v${version}";
sha256 = "09ri3jmgp9jjwi1mzv4c3w6rvcmyx6spa2qxpwlcn0f4bmfva6wm"; sha256 = "1dz7kh92df23scl1pkhn70n1f2v3d0x84liphn9kpsd6wlsxccxc";
}; };
preConfigure = ''
sh generate-everything.sh
'';
meta = with lib; { meta = with lib; {
homepage = "https://github.com/ryanorendorff/functional-linear-algebra"; homepage = "https://github.com/ryanorendorff/functional-linear-algebra";
description = '' description = ''

View File

@ -2,13 +2,13 @@
mkDerivation rec { mkDerivation rec {
pname = "generic"; pname = "generic";
version = "0.1.0.1"; version = "0.1.0.2";
src = fetchFromGitHub { src = fetchFromGitHub {
repo = "Generic";
owner = "effectfully"; owner = "effectfully";
repo = "Generic";
rev = "v${version}"; rev = "v${version}";
sha256 = "07l44yzx1jly20kmkmkjk8q493bn6x7i3xxpz6mhadkqlxyhmc8s"; sha256 = "05igsd2gaj6h9bkqwp8llhvn4qvc5gmi03x4fnz096ba8m6x8s3n";
}; };
buildInputs = [ buildInputs = [

View File

@ -2,13 +2,13 @@
mkDerivation rec { mkDerivation rec {
pname = "standard-library"; pname = "standard-library";
version = "1.4"; version = "1.5";
src = fetchFromGitHub { src = fetchFromGitHub {
repo = "agda-stdlib"; repo = "agda-stdlib";
owner = "agda"; owner = "agda";
rev = "v${version}"; rev = "v${version}";
sha256 = "1asjbisb7pfkgzqy7gf9b23z63bba8l8p1wqfd6ff5ddgqwj3dhp"; sha256 = "16fcb7ssj6kj687a042afaa2gq48rc8abihpm14k684ncihb2k4w";
}; };
nativeBuildInputs = [ (ghcWithPackages (self : [ self.filemanip ])) ]; nativeBuildInputs = [ (ghcWithPackages (self : [ self.filemanip ])) ];