nixpkgs/pkgs/tools/misc/ding-libs/default.nix

25 lines
638 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, check }:
stdenv.mkDerivation rec {
pname = "ding-libs";
2017-10-23 16:26:19 +00:00
version = "0.6.1";
src = fetchurl {
url = "https://fedorahosted.org/released/ding-libs/ding-libs-${version}.tar.gz";
2017-10-23 16:26:19 +00:00
sha256 = "1h97mx2jdv4caiz4r7y8rxfsq78fx0k4jjnfp7x2s7xqvqks66d3";
};
enableParallelBuilding = true;
buildInputs = [ check ];
doCheck = true;
meta = {
description = "'D is not GLib' utility libraries";
homepage = "https://fedorahosted.org/sssd/";
2021-01-15 09:19:50 +00:00
platforms = with lib.platforms; linux;
maintainers = with lib.maintainers; [ e-user ];
2021-01-15 13:21:58 +00:00
license = [ lib.licenses.gpl3 lib.licenses.lgpl3 ];
};
}