nixos/wireless: remove patch warning from allowAuxiliaryImperativeNetworks option...
[NixPkgs.git] / pkgs / development / libraries / agda / iowa-stdlib / default.nix
blob55505f0edf42df021c76cb89f72a26139de5b2d3
2   lib,
3   mkDerivation,
4   fetchFromGitHub,
5 }:
7 mkDerivation (rec {
8   version = "1.5.0";
9   pname = "iowa-stdlib";
11   src = fetchFromGitHub {
12     owner = "cedille";
13     repo = "ial";
14     rev = "v${version}";
15     sha256 = "0dlis6v6nzbscf713cmwlx8h9n2gxghci8y21qak3hp18gkxdp0g";
16   };
18   libraryFile = "";
19   libraryName = "IAL-1.3";
21   buildPhase = ''
22     patchShebangs find-deps.sh
23     make
24   '';
26   meta = {
27     homepage = "https://github.com/cedille/ial";
28     description = "Agda standard library developed at Iowa";
29     license = lib.licenses.free;
30     platforms = lib.platforms.unix;
31     # broken since Agda 2.6.1
32     broken = true;
33     maintainers = with lib.maintainers; [
34       alexarice
35       turion
36     ];
37   };