nixpkgs/pkgs/development/libraries/confuse/default.nix
Ryan Mulligan fc7aa6f606 confuse: 2.7 -> 3.2.1
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/confuse/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 3.2.1 with grep in /nix/store/nbr6d47mgzxmmxymjh3rw0yc7il66wks-confuse-3.2.1
- directory tree listing: https://gist.github.com/cc2599089248ae14f15a25547413838b
2018-03-30 10:16:06 +01:00

18 lines
491 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "confuse-${version}";
version = "3.2.1";
src = fetchurl {
url = "https://github.com/martinh/libconfuse/releases/download/v${version}/${name}.tar.xz";
sha256 = "0pnjmlj9i0alp407qd7c0vq83sz7gpsjrbdgpcn4xvzjp9r35ii3";
};
meta = {
homepage = http://www.nongnu.org/confuse/;
description = "Configuration file parser library";
license = stdenv.lib.licenses.isc;
platforms = stdenv.lib.platforms.unix;
};
}