mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
linuxstopmotion: format with nixpkgs-rfc-style
This commit is contained in:
parent
ec3d46cd68
commit
4b4a448aa8
@ -1,4 +1,16 @@
|
|||||||
{ mkDerivation, lib, fetchgit, pkg-config, qmake, qtbase, qttools, qtmultimedia, libvorbis, libtar, libxml2 }:
|
{
|
||||||
|
mkDerivation,
|
||||||
|
lib,
|
||||||
|
fetchgit,
|
||||||
|
pkg-config,
|
||||||
|
qmake,
|
||||||
|
qtbase,
|
||||||
|
qttools,
|
||||||
|
qtmultimedia,
|
||||||
|
libvorbis,
|
||||||
|
libtar,
|
||||||
|
libxml2,
|
||||||
|
}:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
version = "0.8.5";
|
version = "0.8.5";
|
||||||
@ -10,8 +22,18 @@ mkDerivation rec {
|
|||||||
sha256 = "1612lkwsfzc59wvdj2zbj5cwsyw66bwn31jrzjrxvygxdh4ab069";
|
sha256 = "1612lkwsfzc59wvdj2zbj5cwsyw66bwn31jrzjrxvygxdh4ab069";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ qmake pkg-config ];
|
nativeBuildInputs = [
|
||||||
buildInputs = [ qtbase qttools qtmultimedia libvorbis libtar libxml2 ];
|
qmake
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
buildInputs = [
|
||||||
|
qtbase
|
||||||
|
qttools
|
||||||
|
qtmultimedia
|
||||||
|
libvorbis
|
||||||
|
libtar
|
||||||
|
libxml2
|
||||||
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace stopmotion.pro --replace '$$[QT_INSTALL_BINS]' '${lib.getDev qttools}/bin'
|
substituteInPlace stopmotion.pro --replace '$$[QT_INSTALL_BINS]' '${lib.getDev qttools}/bin'
|
||||||
|
Loading…
Reference in New Issue
Block a user