···84848585, # Meta information, if any.8686 meta ? {}8787+8888+ # Passthru information, if any.8989+, passthru ? {}8790}:88918992assert builtins.isList urls;···142139 '';143140144141 inherit meta;142142+ inherit passthru;145143}
+7-2
pkgs/development/idris-modules/default.nix
···11-{ pkgs, idris, overrides ? (self: super: {}) }: let11+{ pkgs, idris-no-deps, overrides ? (self: super: {}) }: let22 inherit (pkgs.lib) callPackageWith fix' extends;3344 /* Taken from haskell-modules/default.nix, should probably abstract this away */···33333434 value = callPackage (./. + "/${name}.nix") {};3535 }) files)) // {3636- inherit idris callPackage;3636+ inherit idris-no-deps callPackage;3737+ # See #10450 about why we have to wrap the executable3838+ idris =3939+ (pkgs.callPackage ./idris-wrapper.nix {})4040+ idris-no-deps4141+ { path = [ pkgs.gcc ]; lib = [pkgs.gmp]; };37423843 # A list of all of the libraries that come with idris3944 builtins = pkgs.lib.mapAttrsToList (name: value: value) builtins_;
···11+{ lib22+, buildPythonPackage33+, fetchPypi44+, pkgs55+}:66+77+buildPythonPackage rec {88+ pname = "pylibacl";99+ version = "0.5.3";1010+ name = pname + "-" + version;1111+1212+ src = fetchPypi {1313+ inherit pname version;1414+ sha256 = "0c3xw1s5bh6jnsc0wwyxnn6kn6x6rpbmmi05ap1f81fyqlgrzgj0";1515+ };1616+1717+ # ERROR: testExtended (tests.test_acls.AclExtensions)1818+ # IOError: [Errno 0] Error1919+ doCheck = false;2020+2121+ buildInputs = with pkgs; [ acl ];2222+2323+ meta = {2424+ description = "A Python extension module for POSIX ACLs, it can be used to query, list, add, and remove ACLs from files and directories under operating systems that support them";2525+ license = lib.licenses.lgpl21Plus;2626+ };2727+}