12 lines
200 B
Nix
12 lines
200 B
Nix
|
{ kde, kdelibs, boost }:
|
||
|
|
||
|
kde {
|
||
|
name = "strigi-analyzer-torrent";
|
||
|
|
||
|
buildInputs = [ kdelibs boost ];
|
||
|
|
||
|
preConfigure = "mv -v strigi-analyzer kfile-plugins";
|
||
|
|
||
|
patches = [ ./kdenetwork.patch ];
|
||
|
}
|