mirror of
https://github.com/nmattia/niv.git
synced 2024-11-27 01:56:09 +03:00
68 lines
2.0 KiB
Nix
68 lines
2.0 KiB
Nix
# This file has been generated by Niv.
|
|
|
|
# A record, from name to path, of the third-party packages
|
|
with rec
|
|
{
|
|
pkgs =
|
|
if hasNixpkgsPath
|
|
then
|
|
if hasThisAsNixpkgsPath
|
|
then import (builtins_fetchTarball { inherit (sources_nixpkgs) url sha256; }) {}
|
|
else import <nixpkgs> {}
|
|
else
|
|
import (builtins_fetchTarball { inherit (sources_nixpkgs) url sha256; }) {};
|
|
|
|
sources_nixpkgs =
|
|
if builtins.hasAttr "nixpkgs" sources
|
|
then sources.nixpkgs
|
|
else abort
|
|
''
|
|
Please specify either <nixpkgs> (through -I or NIX_PATH=nixpkgs=...) or
|
|
add a package called "nixpkgs" to your sources.json.
|
|
'';
|
|
|
|
builtins_fetchTarball =
|
|
# fetchTarball version that is compatible between all the versions of
|
|
# Nix
|
|
{ url, sha256 }@attrs:
|
|
let
|
|
inherit (builtins) lessThan nixVersion fetchTarball;
|
|
in
|
|
if lessThan nixVersion "1.12" then
|
|
fetchTarball { inherit url; }
|
|
else
|
|
fetchTarball attrs;
|
|
|
|
hasNixpkgsPath = (builtins.tryEval <nixpkgs>).success;
|
|
hasThisAsNixpkgsPath =
|
|
(builtins.tryEval <nixpkgs>).success && <nixpkgs> == ./.;
|
|
|
|
sources = builtins.fromJSON (builtins.readFile ./sources.json);
|
|
|
|
mapAttrs = builtins.mapAttrs or
|
|
(f: set: with builtins;
|
|
listToAttrs (map (attr: { name = attr; value = f attr set.${attr}; }) (attrNames set)));
|
|
|
|
getFetcher = spec:
|
|
let fetcherName =
|
|
if builtins.hasAttr "type" spec
|
|
then builtins.getAttr "type" spec
|
|
else "tarball";
|
|
in builtins.getAttr fetcherName {
|
|
"tarball" = pkgs.fetchzip;
|
|
"file" = pkgs.fetchurl;
|
|
};
|
|
};
|
|
# NOTE: spec must _not_ have an "outPath" attribute
|
|
mapAttrs (_: spec:
|
|
if builtins.hasAttr "outPath" spec
|
|
then abort
|
|
"The values in sources.json should not have an 'outPath' attribute"
|
|
else
|
|
if builtins.hasAttr "url" spec && builtins.hasAttr "sha256" spec
|
|
then
|
|
spec //
|
|
{ outPath = getFetcher spec { inherit (spec) url sha256; } ; }
|
|
else spec
|
|
) sources
|