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
27
pkgs/applications/video/linuxstopmotion/default.nix
Normal file
27
pkgs/applications/video/linuxstopmotion/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ mkDerivation, lib, fetchgit, pkg-config, qmake, qtbase, qttools, qtmultimedia, libvorbis, libtar, libxml2 }:
|
||||
|
||||
mkDerivation rec {
|
||||
version = "0.8.5";
|
||||
pname = "linuxstopmotion";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.code.sf.net/p/linuxstopmotion/code";
|
||||
rev = version;
|
||||
sha256 = "1612lkwsfzc59wvdj2zbj5cwsyw66bwn31jrzjrxvygxdh4ab069";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ qmake pkg-config ];
|
||||
buildInputs = [ qtbase qttools qtmultimedia libvorbis libtar libxml2 ];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace stopmotion.pro --replace '$$[QT_INSTALL_BINS]' '${lib.getDev qttools}/bin'
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Create stop-motion animation movies";
|
||||
homepage = "http://linuxstopmotion.org/";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue