uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
20
pkgs/tools/misc/dvtm/default.nix
Normal file
20
pkgs/tools/misc/dvtm/default.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{callPackage, fetchurl}:
|
||||
callPackage ./dvtm.nix rec {
|
||||
pname = "dvtm";
|
||||
version = "0.15";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.brain-dump.org/projects/dvtm/dvtm-${version}.tar.gz";
|
||||
sha256 = "0475w514b7i3gxk6khy8pfj2gx9l7lv2pwacmq92zn1abv01a84g";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# https://github.com/martanne/dvtm/pull/69
|
||||
# Use self-pipe instead of signal blocking fixes issues on darwin.
|
||||
(fetchurl {
|
||||
url = "https://github.com/martanne/dvtm/commit/1f1ed664d64603f3f1ce1388571227dc723901b2.patch";
|
||||
sha256 = "1cby8x3ckvhzqa8yxlfrwzgm8wk7yz84kr9psdjr7xwpnca1cqrd";
|
||||
})
|
||||
];
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue