ding-libs: Some cleanups
- Add version to the name so Nix knows about it - glibc is an implicit buildInput, no need to add it - The docs don't seem to get build anyway, don't try to build them & remove the doxygen build input - Add meta.platforms
This commit is contained in:
parent
6a48087bc3
commit
6bf0a984ef
@ -1,26 +1,23 @@
|
|||||||
{ stdenv, fetchurl, glibc, doxygen, check }:
|
{ stdenv, fetchurl, check }:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
name = "ding-libs";
|
name = "ding-libs-${version}";
|
||||||
version = "0.6.0";
|
version = "0.6.0";
|
||||||
in stdenv.mkDerivation {
|
|
||||||
inherit name;
|
|
||||||
inherit version;
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://fedorahosted.org/released/${name}/${name}-${version}.tar.gz";
|
url = "https://fedorahosted.org/released/ding-libs/ding-libs-${version}.tar.gz";
|
||||||
sha1 = "c8ec86cb93a26e013a13b12a7b0b3fbc1bca16c1";
|
sha1 = "c8ec86cb93a26e013a13b12a7b0b3fbc1bca16c1";
|
||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
buildInputs = [ glibc doxygen check ];
|
buildInputs = [ check ];
|
||||||
|
|
||||||
buildFlags = "docs";
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "'D is not GLib' utility libraries";
|
description = "'D is not GLib' utility libraries";
|
||||||
homepage = https://fedorahosted.org/sssd/;
|
homepage = https://fedorahosted.org/sssd/;
|
||||||
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
maintainers = with stdenv.lib.maintainers; [ e-user ];
|
maintainers = with stdenv.lib.maintainers; [ e-user ];
|
||||||
license = [ stdenv.lib.licenses.gpl3 stdenv.lib.licenses.lgpl3 ];
|
license = [ stdenv.lib.licenses.gpl3 stdenv.lib.licenses.lgpl3 ];
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user