mirror of
https://github.com/nix-community/nixpkgs-update.git
synced 2024-11-25 20:13:04 +03:00
734590d1c9
* Add waitForNoLock to try to fix recurrent git index.lock issue * Don't output most git commands to stdout * Add some spaces so ExceptT errors aren't smashed together
58 lines
1.2 KiB
YAML
58 lines
1.2 KiB
YAML
name: nixpkgs-update
|
|
version: 0.2.0
|
|
synopsis: Tool for semi-automatic updating of nixpkgs repository
|
|
description: nixpkgs-update provides tools for updating of nixpkgs
|
|
packages in a semi-automatic way. Mainly, it is used to run the GitHub
|
|
bot @r-ryantm, but the underlying update mechanisms should be
|
|
generally useful and in a later version should be exposed as a
|
|
command-line tool.
|
|
license: PublicDomain
|
|
author: Ryan Mulligan
|
|
maintainer: ryan@ryantm.com
|
|
copyright: 2018 Ryan Mulligan
|
|
category: Web
|
|
extra-source-files:
|
|
- README.md
|
|
|
|
github: ryantm/nixpkgs-update
|
|
|
|
ghc-options: -Wall
|
|
|
|
dependencies:
|
|
- base >= 4.7 && < 5
|
|
- directory >= 1.3 && < 1.4
|
|
- filepath
|
|
- neat-interpolation >= 0.3 && < 0.4
|
|
- optparse-applicative
|
|
- regex-applicative-text
|
|
- shelly
|
|
- typed-process
|
|
- text
|
|
- bytestring
|
|
- time >= 1.8 && < 1.10
|
|
- errors
|
|
- mtl
|
|
- github
|
|
- unix
|
|
- vector
|
|
- containers
|
|
- parsec
|
|
- parsers
|
|
- transformers
|
|
- lifted-base
|
|
- xdg-basedir
|
|
- template-haskell
|
|
|
|
executables:
|
|
nixpkgs-update:
|
|
source-dirs: src
|
|
main: Main.hs
|
|
|
|
tests:
|
|
doctests:
|
|
main: doctests.hs
|
|
ghc-options: -threaded
|
|
source-dirs: test
|
|
dependencies:
|
|
- doctest
|