mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
iwd: 0.20 -> 0.22
We need rst2man to build manpages. I also removed revert-create-dirs-on-install.patch, as it doesn't apply cleanly anymore, and is purely cosmetic anyway.
This commit is contained in:
parent
d3c069c50d
commit
29ba759209
1 changed files with 4 additions and 12 deletions
|
@ -5,32 +5,24 @@
|
||||||
, pkgconfig
|
, pkgconfig
|
||||||
, ell
|
, ell
|
||||||
, coreutils
|
, coreutils
|
||||||
|
, docutils
|
||||||
, readline
|
, readline
|
||||||
, python3Packages
|
, python3Packages
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "iwd";
|
pname = "iwd";
|
||||||
version = "0.20";
|
version = "0.22";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = https://git.kernel.org/pub/scm/network/wireless/iwd.git;
|
url = https://git.kernel.org/pub/scm/network/wireless/iwd.git;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "03ca47d4hn28vkf5fr6ck1gz5py4lm1pw3nw9s1ckw7cqxw961sf";
|
sha256 = "0mjc08ayq2k7sinqanrlm97dn88dxkqkyk2vqqcx1nqjvwvbpbsp";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
|
||||||
# Undo creating ReadWritePaths as instalation target.
|
|
||||||
(fetchpatch {
|
|
||||||
name = "revert-create-dirs-on-install.patch";
|
|
||||||
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git/patch/?id=5a96c11664eb553bc28a2142af382b190254edbb";
|
|
||||||
sha256 = "08gkz3ia1l5xsh3pbx4abimgf7m88wygfpfyg77yi6dwavjqm6cx";
|
|
||||||
revert = true;
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
autoreconfHook
|
autoreconfHook
|
||||||
|
docutils
|
||||||
pkgconfig
|
pkgconfig
|
||||||
python3Packages.wrapPython
|
python3Packages.wrapPython
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue