1
1
mirror of https://github.com/nmattia/niv.git synced 2024-11-07 22:36:53 +03:00

Update nixpkgs

This commit is contained in:
Nicolas Mattia 2019-02-25 10:26:13 +01:00
parent 84692d2123
commit 1b1b977fb9
3 changed files with 11 additions and 13 deletions

View File

@ -15,7 +15,6 @@ import Data.Aeson (FromJSON, FromJSONKey, ToJSON, ToJSONKey)
import Data.Char (toUpper) import Data.Char (toUpper)
import Data.Hashable (Hashable) import Data.Hashable (Hashable)
import Data.Maybe (mapMaybe, fromMaybe) import Data.Maybe (mapMaybe, fromMaybe)
import Data.Semigroup
import Data.String.QQ (s) import Data.String.QQ (s)
import GHC.Exts (toList) import GHC.Exts (toList)
import System.Exit (exitFailure) import System.Exit (exitFailure)

View File

@ -3,11 +3,10 @@ import sources.nixpkgs
{ overlays = { overlays =
[ [
# Snack # Snack
(self: super: (_: pkgs:
{ with
snack-exe = (import sources.snack).snack-exe; { snack = pkgs.callPackage "${sources.snack}/nix/packages.nix" {}; };
snack-lib = (import sources.snack).snack-lib; { inherit (snack) snack-exe snack-lib; }
}
) )
]; ];
config = {}; config = {};

View File

@ -1,23 +1,23 @@
{ {
"snack": { "snack": {
"homepage": "", "homepage": "",
"url": "https://github.com/nmattia/snack/archive/a4b7401cd3f7468cc3a8af1067466a96ef259d8b.tar.gz", "url": "https://github.com/nmattia/snack/archive/7b90144a01fff7e5eeb520a6b774377f75e44205.tar.gz",
"owner": "nmattia", "owner": "nmattia",
"branch": "master", "branch": "master",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz", "url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz",
"repo": "snack", "repo": "snack",
"sha256": "1sywnk19pdj8acq9gb3sy959s55gn66x4s8z038ifimvk6xpyl50", "sha256": "0p0bldlr83i4bigsv0ygnn7q0lv25hkjd5n4nm1vlvwm9cp8n5dn",
"description": "Nix-based incremental build tool for Haskell projects", "description": "Nix-based incremental build tool for Haskell projects",
"rev": "a4b7401cd3f7468cc3a8af1067466a96ef259d8b" "rev": "7b90144a01fff7e5eeb520a6b774377f75e44205"
}, },
"nixpkgs": { "nixpkgs": {
"url": "https://github.com/NixOS/nixpkgs-channels/archive/138f2cc707d7ee13d93c86db3285460e244c402c.tar.gz", "url": "https://github.com/NixOS/nixpkgs-channels/archive/8e70d4bd7d5e1c137006fe483d8d116311694bc2.tar.gz",
"owner": "NixOS", "owner": "NixOS",
"branch": "nixos-18.03", "branch": "nixos-18.09",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz", "url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz",
"repo": "nixpkgs-channels", "repo": "nixpkgs-channels",
"sha256": "0h49j1cbnccqx996x80z7na9p7slnj9liz646s73s55am8wc9q8q", "sha256": "14vl7qlb48v9fdwdlz0cj6h83kj6zlc7qg3n6sbiabr52y2bhmkh",
"description": "Nixpkgs/NixOS branches that track the Nixpkgs/NixOS channels", "description": "Nixpkgs/NixOS branches that track the Nixpkgs/NixOS channels",
"rev": "138f2cc707d7ee13d93c86db3285460e244c402c" "rev": "8e70d4bd7d5e1c137006fe483d8d116311694bc2"
} }
} }