fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, gettext, hostPlatform }:
2
3stdenv.mkDerivation rec {
4 name = "attr-2.4.47";
5
6 src = fetchurl {
7 url = "mirror://savannah/attr/${name}.src.tar.gz";
8 sha256 = "0nd8y0m6awc9ahv0ciiwf8gy54c8d3j51pw9xg7f7cn579jjyxr5";
9 };
10
11 outputs = [ "bin" "dev" "out" "man" "doc" ];
12
13 nativeBuildInputs = [ gettext ];
14
15 configureFlags = [ "MAKE=make" "MSGFMT=msgfmt" "MSGMERGE=msgmerge" "XGETTEXT=xgettext" "ECHO=echo" "SED=sed" "AWK=gawk" ];
16
17 installTargets = [ "install" "install-lib" "install-dev" ];
18
19 patches = if (hostPlatform.libc == "musl") then [ ./fix-headers-musl.patch ] else null;
20
21 meta = with stdenv.lib; {
22 homepage = "http://savannah.nongnu.org/projects/attr/";
23 description = "Library and tools for manipulating extended attributes";
24 platforms = platforms.linux;
25 license = licenses.gpl2Plus;
26 };
27}