27 lines
661 B
Nix
27 lines
661 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "popt";
|
|
version = "1.18";
|
|
|
|
src = fetchurl {
|
|
url = "https://ftp.osuosl.org/pub/rpm/popt/releases/popt-1.x/popt-${version}.tar.gz";
|
|
sha256 = "1lf5zlj5rbg6s4bww7hbhpca97prgprnarx978vcwa0bl81vqnai";
|
|
};
|
|
|
|
patches = lib.optionals stdenv.isCygwin [
|
|
./1.16-cygwin.patch
|
|
./1.16-vpath.patch
|
|
];
|
|
|
|
doCheck = false; # fails
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/rpm-software-management/popt";
|
|
description = "Command line option parsing library";
|
|
maintainers = with maintainers; [ qyliss ];
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|