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
22
pkgs/desktops/gnustep/gworkspace/default.nix
Normal file
22
pkgs/desktops/gnustep/gworkspace/default.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ back, base, gui, gsmakeDerivation
|
||||
, fetchurl
|
||||
, system_preferences
|
||||
}:
|
||||
let
|
||||
version = "1.0.0";
|
||||
in
|
||||
gsmakeDerivation {
|
||||
name = "gworkspace-${version}";
|
||||
src = fetchurl {
|
||||
url = "ftp://ftp.gnustep.org/pub/gnustep/usr-apps/gworkspace-${version}.tar.gz";
|
||||
sha256 = "sha256-M7dV7RVatw8gdYHQlRi5wNBd6MGT9GqW04R/DoKNu6I=";
|
||||
};
|
||||
# additional dependencies:
|
||||
# - PDFKit framework from http://gap.nongnu.org/
|
||||
# - TODO: to --enable-gwmetadata, need libDBKit as well as sqlite!
|
||||
buildInputs = [ back base gui system_preferences ];
|
||||
configureFlags = [ "--with-inotify" ];
|
||||
meta = {
|
||||
description = "A workspace manager for GNUstep";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue