0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 14:10:33 +03:00

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