mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +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 {
|
||||
version = "0.8.5";
|
||||
@ -10,8 +22,18 @@ mkDerivation rec {
|
||||
sha256 = "1612lkwsfzc59wvdj2zbj5cwsyw66bwn31jrzjrxvygxdh4ab069";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ qmake pkg-config ];
|
||||
buildInputs = [ qtbase qttools qtmultimedia libvorbis libtar libxml2 ];
|
||||
nativeBuildInputs = [
|
||||
qmake
|
||||
pkg-config
|
||||
];
|
||||
buildInputs = [
|
||||
qtbase
|
||||
qttools
|
||||
qtmultimedia
|
||||
libvorbis
|
||||
libtar
|
||||
libxml2
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace stopmotion.pro --replace '$$[QT_INSTALL_BINS]' '${lib.getDev qttools}/bin'
|
||||
|
Loading…
Reference in New Issue
Block a user