mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
mtdutils: add dev output
This contains headers and static libs.
This commit is contained in:
parent
fbedeabf19
commit
a5c2a37896
@ -22,6 +22,14 @@ stdenv.mkDerivation rec {
|
||||
|
||||
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $dev/lib
|
||||
mv *.a $dev/lib/
|
||||
mv include $dev/
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tools for MTD filesystems";
|
||||
downloadPage = "https://git.infradead.org/mtd-utils.git";
|
||||
|
Loading…
Reference in New Issue
Block a user