nix-linter: 2019-04-26 -> 2020-09-25

This commit is contained in:
Domen Kožar 2020-10-06 19:33:54 +02:00
parent d6d22a8361
commit a05f231884
No known key found for this signature in database
GPG Key ID: C2FFBCAFD2C24246

View File

@ -1,20 +1,18 @@
{ lib { lib
, mkDerivation , mkDerivation
, fetchFromGitHub , fetchFromGitHub
, parallel-io
, fixplate , fixplate
, pandoc
, tasty , tasty
, tasty-hunit , tasty-hunit
, tasty-th , tasty-th
, streamly , streamly
, mtl , mtl
, path-io
, path , path
, pretty-terminal , pretty-terminal
, text , text
, base , base
, aeson , aeson
, path-io
, cmdargs , cmdargs
, containers , containers
, hnix , hnix
@ -23,19 +21,19 @@
mkDerivation rec { mkDerivation rec {
pname = "nix-linter-unstable"; pname = "nix-linter-unstable";
version = "2019-04-26"; version = "2020-09-25";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Synthetica9"; owner = "Synthetica9";
repo = "nix-linter"; repo = "nix-linter";
rev = "4aaf60195cd2d9f9e2345fbdf4aac48e1451292c"; rev = "2516a8cda41f9bb553a1c3eca38e3dd94ebf53de";
sha256 = "0c7rcjaxd8z0grwambsw46snv7cg66h3pszw3549z4xz0i60yq87"; sha256 = "07mn2c9v67wsm57jlxv9pqac9hahw4618vngmj2sfbgihx8997kb";
}; };
isLibrary = false; isLibrary = false;
isExecutable = true; isExecutable = true;
libraryHaskellDepends = [ parallel-io fixplate pandoc ]; libraryHaskellDepends = [ fixplate ];
executableHaskellDepends = [ streamly mtl path-io path pretty-terminal text base aeson cmdargs containers hnix bytestring ]; executableHaskellDepends = [ streamly mtl path pretty-terminal text base aeson cmdargs containers hnix bytestring path-io ];
testHaskellDepends = [ tasty tasty-hunit tasty-th ]; testHaskellDepends = [ tasty tasty-hunit tasty-th ];
description = "Linter for Nix(pkgs), based on hnix"; description = "Linter for Nix(pkgs), based on hnix";