My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/popt/default.nix

26 lines
661 B

{ 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;
};
}