tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
createrepo_c: add meta and myself as a maintainer
Dan Peebles
10 years ago
48fb16ff
ce946f24
+8
1 changed file
expand all
collapse all
unified
split
pkgs
tools
package-management
createrepo_c
default.nix
+8
pkgs/tools/package-management/createrepo_c/default.nix
···
23
23
'';
24
24
25
25
buildInputs = [ cmake pkgconfig bzip2 expat glib curl libxml2 python rpm openssl sqlite file xz pcre bashCompletion ];
26
26
+
27
27
+
meta = with stdenv.lib; {
28
28
+
description = "C implementation of createrepo";
29
29
+
homepage = "http://rpm-software-management.github.io/createrepo_c/";
30
30
+
license = licenses.gpl2;
31
31
+
platforms = platforms.linux;
32
32
+
maintainers = with maintainers; [ copumpkin ];
33
33
+
};
26
34
}
27
35