nixpkgs-suyu/pkgs/development/libraries/agda/agda-iowa-stdlib/default.nix

28 lines
685 B
Nix
Raw Normal View History

2018-10-12 23:20:19 +02:00
{ stdenv, agda, fetchFromGitHub }:
2014-09-27 05:25:26 +02:00
agda.mkDerivation (self: rec {
version = "1.5.0";
name = "agda-iowa-stdlib-${version}";
2014-09-27 05:25:26 +02:00
2018-10-12 23:20:19 +02:00
src = fetchFromGitHub {
owner = "cedille";
repo = "ial";
rev = "v${version}";
sha256 = "0dlis6v6nzbscf713cmwlx8h9n2gxghci8y21qak3hp18gkxdp0g";
2014-09-27 05:25:26 +02:00
};
sourceDirectories = [ "./." ];
buildPhase = ''
patchShebangs find-deps.sh
2014-09-27 05:25:26 +02:00
make
'';
meta = {
homepage = "https://svn.divms.uiowa.edu/repos/clc/projects/agda/lib/";
description = "Agda standard library developed at Iowa";
2014-09-27 05:25:26 +02:00
license = stdenv.lib.licenses.free;
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ ];
2014-09-27 05:25:26 +02:00
};
})